import type * as Pinnacle from "../index.mjs"; /** * Response shape for a scheduled form send — returned in place of `SendFormResponse` when `options.schedule` is set. */ export interface ScheduledFormSendResult { scheduleId: string; config: Pinnacle.MessageSchedule; form: ScheduledFormSendResult.Form; submission: ScheduledFormSendResult.Submission; } export declare namespace ScheduledFormSendResult { interface Form { id: string; name: string | null; } interface Submission { id: string; url: string; } }