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