import { GenderEnum, ID_Output } from '../../enums'; export declare function updateUserDetailsInputArgsValidator(args: Partial): Record; export interface UpdateUserDetailsInputArgs { userId: ID_Output; version: number; firstName?: string | null; lastName?: string | null; phone?: string | null; gender?: GenderEnum | null; birthday?: string | null; placeId?: string | null; apartment?: string | null; instagram?: string | null; snapchat?: string | null; facebook?: string | null; profilePictureId?: ID_Output | null; interests?: string[] | null; contactEmail?: string | null; incorrectAddressNote?: string | null; }