import * as Soql from '../model';
import { SoqlModelObjectImpl } from './soqlModelObjectImpl';
export declare class FieldRefImpl extends SoqlModelObjectImpl implements Soql.FieldRef {
fieldName: string;
constructor(fieldName: string);
toSoqlSyntax(options?: Soql.SyntaxOptions): string;
}