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