import { BASE_SIZES } from "../../constants"; export declare enum TextFieldAriaLabel { CHAR = "Input char count", VALIDATION_TEXT = "Additional helper text" } declare const OLD_TEXT_FIELD_SIZES: { s: "small"; md: "medium"; l: "large"; }; export type TextFieldSize = (typeof BASE_SIZES)[keyof typeof BASE_SIZES] | keyof typeof OLD_TEXT_FIELD_SIZES; export declare const FEEDBACK_CLASSES: { error: string; success: string; }; export declare const SIZE_MAPPER: { small: string; medium: string; large: string; }; export {};