/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ export type FormatCharacterCountText = (length: number, maxLength: number) => string; /** Formats the character count in Arabic, e.g. ‘7 من 10 أحرف’. */ export declare const formatCharacterCountTextAr: FormatCharacterCountText; /** Formats the character count in German, e.g. ‘7 von 10 Zeichen’. */ export declare const formatCharacterCountTextDe: FormatCharacterCountText; /** Formats the character count in English, e.g. ‘7 of 10 characters’. */ export declare const formatCharacterCountTextEn: FormatCharacterCountText; /** Formats the character count in French, e.g. ‘7 caractères sur 10’. */ export declare const formatCharacterCountTextFr: FormatCharacterCountText; /** Formats the character count in Dutch, e.g. ‘7 van 10 tekens’. */ export declare const formatCharacterCountTextNl: FormatCharacterCountText; /** Formats the character count in Turkish, e.g. ‘10 karakterden 7’. */ export declare const formatCharacterCountTextTr: FormatCharacterCountText;