/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; export type CharacterCountProps = { /** The current length of the field’s value. */ length: number; /** The maximum length of the field’s value. */ maxLength: number; } & HTMLAttributes; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-character-count--docs Character Count docs at Amsterdam Design System} */ export declare const CharacterCount: import("react").ForwardRefExoticComponent<{ /** The current length of the field’s value. */ length: number; /** The maximum length of the field’s value. */ maxLength: number; } & HTMLAttributes & import("react").RefAttributes>;