import * as React from "react"; 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: React.NamedExoticComponent; export default _default; //# sourceMappingURL=Button.d.ts.map