export declare class Bounds { private _coordinates; private _dimensions; constructor(x: number, y: number, width: number, height: number); isWithin(x: number, y: number): boolean; }