import { MultiPolygon } from 'geojson';
import { Column } from '../../column';
import { IWhereComponent } from '../where-component';
import { WhereValue } from '../where-value';
export declare class WithinPolygon implements IWhereComponent {
    readonly Column: Column;
    readonly MultiPolygon: WhereValue<MultiPolygon>;
    constructor(column: Column, multiPolygon: WhereValue<MultiPolygon>);
    toString(): string;
}
