interface ResolveHookModalProps { /** Whether the modal is open */ isOpen: boolean; /** Callback when the modal should be closed */ onClose: () => void; /** Callback when the form is submitted with the parsed JSON payload */ onSubmit: (payload: unknown) => Promise; /** Whether the submission is in progress */ isSubmitting?: boolean; } /** * Modal component for resolving a hook by entering a JSON payload. * * Styled to match the Geist design-system dialog component used in the * Vercel dashboard so it looks native when rendered inside `front`. */ export declare function ResolveHookModal({ isOpen, onClose, onSubmit, isSubmitting, }: ResolveHookModalProps): React.JSX.Element | null; export {}; //# sourceMappingURL=resolve-hook-modal.d.ts.map