import { type SchedulePublishTaskInput, type ServerFunction } from 'payload'; export type SchedulePublishHandlerArgs = { date?: Date; /** * The job id to delete to remove a scheduled publish event */ deleteID?: number | string; localeToPublish?: string; timezone?: string; } & Pick; export declare const schedulePublishHandler: ServerFunction; //# sourceMappingURL=schedulePublishHandler.d.ts.map