import { Field as FieldParent } from './field';
import { FieldAffix, FieldAffixes } from './field-affix';
import { FieldCounter } from './field-counter';
import { FieldDescription } from './field-description';
type Field = typeof FieldParent & {
/**
* Field description component, used to provide additional information below the input.
*
* @example
* Additional information
*/
Description: typeof FieldDescription;
/**
* Field affixes component, used to display affixes like currency or unit.
*
* @example
*
* NOK
*
* pr. mnd.
*
*/
Affixes: typeof FieldAffixes;
/**
* Field Affix component, used to wrap a form field.
* Used within Field.Affixes.
*
* @example
*
* NOK
*
* pr. mnd.
*
*/
Affix: typeof FieldAffix;
/**
* Field counter component, used to display a character counter for the field.
*
* @example
*
*
*
*
*/
Counter: typeof FieldCounter;
};
/**
* Field component, used to wrap a form field.
*
* @example
*
*
* Beskrivelse
*
* Feilmelding
*
*/
declare const FieldComponent: Field;
export type { FieldProps } from './field';
export type { FieldAffixesProps, FieldAffixProps, } from './field-affix';
export type { FieldCounterProps } from './field-counter';
export type { FieldDescriptionProps } from './field-description';
export { FieldAffix, FieldAffixes, FieldComponent as Field, FieldCounter, FieldDescription, };
//# sourceMappingURL=index.d.ts.map