import { CreateWuiProps } from '../System';
export interface ShapeOptions {
    shape?: 'circle' | 'square';
}
export type ShapeProps = CreateWuiProps<'div', ShapeOptions>;
export declare const Shape: import('../System').CreateWuiComponent<"div", ShapeProps>;
