import { DrawSettings } from '../structs/DrawSettings';
import { ShapeType } from '../enums/ShapeType';
import { Shape } from './Shape';
/**
 * @group Game Objects
 */
export declare class SimpleShape extends Shape {
    constructor(shapeType: ShapeType, drawSettings?: DrawSettings);
}
