import type { FormControlProps } from '@pega/cosmos-react-core'; interface Value { name: string; email: string; locations: string; meetings: string; meals: string; notes: string; } interface Field extends FormControlProps { help?: FormControlProps['info']; validator?: (this: Field) => string; } export declare const AIValues: Value[]; export declare const initFields: () => Field[]; export declare const fieldReducer: (fields: Field[], { type, name, value }: { type: "blur" | "change" | "submit" | "cancel" | "ai"; name?: string; value?: string; }) => Field[]; export {}; //# sourceMappingURL=AIButton.mocks.d.ts.map