import { Widget } from '../decorators/construct'; import './string-bindings.pcss'; export declare class StringBindings implements Widget { text: string; init: (el: Element) => void; onNewValueClick(): void; onNewTextEntered(ev: any, el: HTMLInputElement): void; markupAll(): string; localUpperCase: (str: string) => string; localClassSuffix: (str: string) => string; }