import type { ScheduleFormData } from '../types.js'; export interface Props { /** Initial form data (for editing) */ initialData?: Partial; /** Available agent types */ agentTypes?: string[]; /** Submit callback */ onSubmit?: (data: ScheduleFormData) => void; /** Cancel callback */ onCancel?: () => void; /** Loading state */ loading?: boolean; /** Edit mode */ editMode?: boolean; } declare const AgentScheduleForm: import("svelte").Component; type AgentScheduleForm = ReturnType; export default AgentScheduleForm; //# sourceMappingURL=AgentScheduleForm.svelte.d.ts.map