export type RawValue = string | {
    readonly toSurql: () => string;
} | {
    readonly toString: () => string;
} | {
    readonly [Symbol.toPrimitive]: (hint: "string") => string;
};
export default class Raw {
    protected _val: RawValue;
    protected _str: string;
    constructor(value: RawValue);
    toString(): string;
}
//# sourceMappingURL=raw.d.ts.map