import { BoxProps, HoistProps } from '@xh/hoist/core'; export interface SpacerProps extends HoistProps, BoxProps { } /** * A component for inserting a fixed-sized spacer along the main axis of its parent container. * Convenience ElemFactories hspacer() and vspacer() each take a pixel size directly. */ export declare const Spacer: import("react").FC, spacer: import("@xh/hoist/core").ElementFactory; /** * A component that stretches to soak up space along the main axis of its parent container. */ export declare const Filler: import("react").FC, filler: import("@xh/hoist/core").ElementFactory; export declare function hspacer(width?: number): import("react").ReactElement; export declare function vspacer(height?: number): import("react").ReactElement;