import { ViewRef } from './types';
export declare class StringRef implements ViewRef {
    private value;
    constructor(value: string);
    getElement(): string;
    detectChanges(): this;
    updateContext(): this;
    destroy(): void;
}
