import { CurrencyEnum, ID_Output } from '../enums'; export declare function updateCompanyInputArgsValidator(args: Partial): Record; export interface UpdateCompanyInputArgs { id: ID_Output; version: number; name?: string | null; companyLogoId?: string | null; url?: string | null; contactEmail?: string | null; contactPhone?: string | null; vat?: string | null; facebook?: string | null; instagram?: string | null; snapchat?: string | null; linkedin?: string | null; currency?: CurrencyEnum | null; }