import { Node } from './Node'; /** * A literal source representation of the provided object */ export declare class Literal extends Node { private readonly tokens; constructor(object: unknown); get childNodes(): unknown[]; toCodeString(): string; }