import type { DevelopmentRequestEvidence, ManagedAssistanceRequestInput } from '../types.js'; export interface Props { /** Identifier of the user submitting the assistance request. */ requesterId: string; /** Additional context data about the application. */ applicationContext?: Record; /** Evidence supporting the assistance request. */ evidence?: DevelopmentRequestEvidence[]; /** Blocks interaction with the form controls. */ disabled?: boolean; /** Invoked when the user submits the form. */ onsubmit?: (value: ManagedAssistanceRequestInput) => void | Promise; } declare const AssistanceLauncher: import("svelte").Component; type AssistanceLauncher = ReturnType; export default AssistanceLauncher; //# sourceMappingURL=AssistanceLauncher.svelte.d.ts.map