import { GetContentDto } from "../../content";
export declare class GetPublishersDto {
    id: string;
    firstName?: string;
    lastName?: string;
    shortName: string;
    slug: string;
    personalStory: GetContentDto;
    quote: string;
    title: string;
    communityPictureUUID: string;
    joinedAsPublisherDate: number;
}
