export declare class CreateAuthorDto {
    name: string;
    email?: string;
    image?: string;
    bio?: string;
    redirectUrl?: string;
}
