export interface Input {
    max?: number;
}
class {
    declare state: {
    inputValue: string;
    inputAriaLive: Marko.AriaAttributes["aria-live"];
    charCount: number;
};
    onCreate(): void { return 1 as any; }
    onTextChange({ value }: {
    value: string;
}): void { return 1 as any; }
    onCharCountChange(e?: {
    count: number;
    inputAriaLive: Marko.AriaAttributes["aria-live"];
}): void { return 1 as any; }
}
