import type { FieldsFor } from "./FieldsForType";
/**
 * Represnets a reference to a field (instead of a literal value).
 */
export declare class FieldReference<T> {
    field: FieldsFor<T>;
    constructor(field: FieldsFor<T>);
    toString(): FieldsFor<T>;
}
