/**
 * Represents a literal value, the provided type may be different than that of the runtime type (e.g., Guid instead of a string).
 */
export declare class Literal {
    value: unknown;
    literalType?: string | undefined;
    constructor(value: unknown, literalType?: string | undefined);
}
