import { SQLDialect } from '../dialect/baseDialect'; import { ChainableExpression, ExpressionJS, ExpressionValue } from './baseExpression'; export declare class MvFilterOnlyExpression extends ChainableExpression { static op: string; static fromJS(parameters: ExpressionJS): MvFilterOnlyExpression; mvArray: string[]; constructor(parameters: ExpressionValue); valueOf(): ExpressionValue; toJS(): ExpressionJS; equals(other: MvFilterOnlyExpression | undefined): boolean; protected _toStringParameters(_indent?: int): string[]; protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string; } //# sourceMappingURL=mvFilterOnlyExpression.d.ts.map