export declare namespace Layout { type direction = 'left-to-right' | 'right-to-left' | 'top-to-bottom' | 'bottom-to-top'; type alignment = 'horizontal' | 'vertical'; function getFlexDirection(direction: Layout.direction): any; function getSizeProperty(direction: Layout.direction): "width" | "height"; function getDomSizeProperty(direction: Layout.direction): "clientWidth" | "clientHeight"; function getMinSizeProperty(direction: Layout.direction): "minWidth" | "minHeight"; function getMaxSizeProperty(direction: Layout.direction): "maxWidth" | "maxHeight"; function getResizeHandle(direction: Layout.direction): (props: import("../resize/index").ResizeHandleProps) => import("react/jsx-runtime").JSX.Element; function getTabbarDirection(direction: Layout.direction): "row" | "column"; } //# sourceMappingURL=layout.d.ts.map