import { AllowedShape, IGeometry, IPoint, ISelector, ISelectorMethods } from '../types/index'; export declare const TYPE = AllowedShape.Oval; export declare function intersects({ x, y }: IPoint, geometry: IGeometry): boolean; export declare function area(geometry: IGeometry): number; export declare const methods: ISelectorMethods; declare const OvalSelector: ISelector; export default OvalSelector;