import { Translation } from './translation';
export declare enum Shape {
    Circle = "circle",
    Square = "square",
    Rounded = "rounded",
    None = "none"
}
export interface ShapeConfig {
    width: number;
    height: number;
    offset: Translation;
    parentOffset: Translation;
    siblingOffset: Translation;
}
export declare const shapeConfig: Record<Shape, ShapeConfig>;
export declare const shapes: Shape[];
