export interface DevelopmentRequestSubmission { type: string; description: string; evidence: Array<{ url: string; label?: string; }>; visibility: 'requester' | 'workspace' | 'public'; origin: string; discussion: string; } export interface Props { /** Invoked when the user submits the development request form. */ onsubmit: (request: DevelopmentRequestSubmission) => void | Promise; /** Blocks all form controls. */ disabled?: boolean; } declare const DevelopmentRequestForm: import("svelte").Component; type DevelopmentRequestForm = ReturnType; export default DevelopmentRequestForm; //# sourceMappingURL=DevelopmentRequestForm.svelte.d.ts.map