import BackgroundPosition from '../Background/BackgroundPosition';
declare class CanvasRectangle {
    position: BackgroundPosition;
    width: number;
    height: number;
    action: Function | undefined;
    constructor(width: number, height: number, position: BackgroundPosition, action?: Function);
    get pos(): BackgroundPosition;
    set pos(position: BackgroundPosition);
    isInside(position: BackgroundPosition): boolean;
}
export default CanvasRectangle;
