import { Geometry } from 'geojson'; import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { WhereValue } from '../where-value'; export declare class Intersects implements IWhereComponent { readonly Column: Column; readonly Geometry: WhereValue; constructor(column: Column, geometry: WhereValue); toString(): string; }