export declare class UpsertAboutDto {
    name: string;
    tagline?: string | null;
    profileImage: string;
    bio: string[];
}
