/**
* Field is a namespace containing form field variants.
*
* @example
* ```tsx
* // Text input with optional mask
*
*
* // Select dropdown
*
* United States
* Canada
*
* ```
*/
declare const Field: {
Text: import('react').ForwardRefExoticComponent>;
Select: {
({ label, id, value, onChange, placeholder, errors, isDisabled, renderHelperText, children, }: import('./Select/index').FieldSelectProps): import("react").JSX.Element;
displayName: string;
Item: import('react').FC;
};
MASKS: {
readonly Date: Required;
readonly Currency: Required;
readonly Percentage: Required;
readonly CCNumber: import('@maskito/core').MaskitoOptions;
readonly Cvc: import('@maskito/core').MaskitoOptions;
readonly Phone: import('@maskito/core').MaskitoOptions;
readonly OnlyDigits: import('@maskito/core').MaskitoOptions;
readonly None: import('@maskito/core').MaskitoOptions;
};
};
export default Field;
//# sourceMappingURL=index.d.ts.map