import type * as Pinnacle from "../index.mjs"; /** * Optional delivery knobs shared by RCS and SMS sends. */ export interface SendFormOptions { schedule?: Pinnacle.MessageSchedule; /** RCS webview size for the open-url button action. Ignored for SMS. */ webview_mode?: SendFormOptions.WebviewMode; } export declare namespace SendFormOptions { /** RCS webview size for the open-url button action. Ignored for SMS. */ const WebviewMode: { readonly Full: "FULL"; readonly Half: "HALF"; readonly Tall: "TALL"; }; type WebviewMode = (typeof WebviewMode)[keyof typeof WebviewMode]; }