import type { BaseInputProps, DefinitionPropertyField, FieldValueType, ErrorType } from '@formitiva/core'; /** * Extended props for Button component * Unlike other fields, Button needs access to all form values * and the ability to change any field */ export interface ButtonInputProps extends BaseInputProps { valuesMap: Record; handleChange: (fieldName: string, value: FieldValueType) => void; handleError: (fieldName: string, error: ErrorType) => void; } declare const _default: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export default _default; //# sourceMappingURL=Button.vue.d.ts.map