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; constructor(column: Column, multiPolygon: WhereValue); toString(): string; }