import { default as React } from 'react';
export interface SpacerProps {
/** Size of the spacer */
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | number;
/** Direction of spacing */
axis?: 'horizontal' | 'vertical';
/** Flex grow to fill available space */
flex?: boolean;
/** Additional className */
className?: string;
}
/**
* Spacer Component
*
* Creates empty space between elements. Can be a fixed size or flexible.
* Useful for creating consistent spacing in layouts.
*
* @example
* ```tsx
*
*
*
*
*
* ```
*
* @example
* ```tsx
*
* Title
*
* Content
*
* ```
*/
export declare const Spacer: React.FC;
//# sourceMappingURL=spacer.d.ts.map