import { ToolRendererProps } from '../../../config/types'; import { ProposedFormFieldValue } from '../../../events'; export type ProposalPayload = { formId?: string; formName?: string; fields: ProposedFormFieldValue[]; notes?: string; }; export declare const normalizeValue: (value: unknown) => string; export declare const coerceProposal: (call: ToolRendererProps["call"]) => ProposalPayload; //# sourceMappingURL=helpers.d.ts.map