export declare const getCounterText: (value: string | number | null | undefined, maxLength: number, counterFormatter?: (inputLength: number, maxLength: number) => string) => string; export declare const hostContext: (selector: string, el: HTMLElement) => boolean; export type TextFieldTypes = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | 'time' | 'week' | 'month' | 'datetime-local'; export interface StyleEventDetail { [styleName: string]: boolean; }