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