import { Point } from 'geojson'; import { Location } from '../../../../datatypes/location'; import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { WhereValue } from '../where-value'; export declare class WithinBox implements IWhereComponent { readonly Column: Column; readonly Start: WhereValue; readonly End: WhereValue; constructor(column: Column, start: WhereValue, end: WhereValue); toString(): string; }