import { Output } from './output'; import { Value } from './value'; export declare class StringValue extends Value { value: string; constructor(value: string); render(output: Output): void; } export declare function quote(value: string): string;