import { Output } from './output'; import { Value } from './value'; import { CaseFormat } from './case'; export declare class IdentifierValue extends Value { value: string; constructor(value: string); render(output: Output): void; } export interface IdentOptions { format?: CaseFormat; } export declare function ident(value: string, options?: IdentOptions): IdentifierValue;