import { Currency } from './currency'; export declare function campaignUpdateInputArgsValidator(args: Partial): Record; export interface CampaignUpdateInputArgs { id: string; version: number; name?: string | null; emailsToNotify?: string[] | null; budget?: Currency | null; }