type TriggerType = "schedule" | "event" | "webhook"; interface CreateAutomationResult { created: true; name: string; triggerType: TriggerType; webhookPath: string | null; } export interface AutomationCreateDialogProps { open: boolean; initialScope?: "personal" | "organization"; onOpenChange: (open: boolean) => void; onCreated: (result: CreateAutomationResult) => void; } export declare function AutomationCreateDialog({ open, initialScope, onOpenChange, onCreated, }: AutomationCreateDialogProps): import("node_modules/@types/react").JSX.Element; export {}; //# sourceMappingURL=automation-create-dialog.d.ts.map