import React, { ReactNode } from "react"; interface AutoSizeProps { children?: ReactNode; viewPort?: boolean; } export const AutoSize: ({ children, viewPort, }: AutoSizeProps) => JSX.Element; interface BoxProps { id?: string; width?: number | string; height?: number | string; flex?: number; margin?: number; marginTop?: number; marginBottom?: number; marginLeft?: number; marginRight?: number; padding?: number; paddingTop?: number; paddingBottom?: number; paddingLeft?: number; paddingRight?: number; minHeight?: number; minWidth?: number; border?: number; style?: object; centered?: boolean; spacing?: number | string; displayName?: string; children?: ReactNode; } interface SpacerProps { width?: number | string; height?: number | string; size?: number | string; flex?: number; style?: object; } export const VBox: React.FC; export const HBox: React.FC; export const Spacer: React.FC; //# sourceMappingURL=types.d.ts.map