/// export type SizeProp = { width?: number; height?: number; }; export type BaseWidgetProps = SizeProp & { baseSize?: SizeProp; width: number; right?: number; top?: number; divideCount?: number; wMargin?: boolean; hMargin?: boolean; className?: string; style: object; children: JSX.Element; }; declare function BaseWidget({ baseSize, width, height, right, top, divideCount, wMargin, hMargin, className, style, children, }: BaseWidgetProps): JSX.Element; export { BaseWidget };