import { ContentType } from '@prisma/client';
export declare class CreateFeedDto {
    contentType: ContentType;
    body?: string;
    mediaUrls?: string[];
    pollQuestion?: string;
    pollOptions?: string[];
    pollEndsAt?: string;
}
export declare class CreateCommentDto {
    body: string;
}
export declare class ReactDto {
    reactionType: string;
}
export declare class CreatePollDto {
    question: string;
    options: string[];
}
