import { default as React } from 'react'; export interface CenterProps { /** Content to center */ children: React.ReactNode; /** Axis to center on */ axis?: 'horizontal' | 'vertical' | 'both'; /** Use inline-flex instead of flex */ inline?: boolean; /** Additional className */ className?: string; } /** * Center Component * * Centers content horizontally, vertically, or both using flexbox. * Useful for centering loading states, empty states, and modal content. * * @example * ```tsx *
* *
* ``` * * @example * ```tsx *
* *
* ``` */ export declare const Center: React.FC; //# sourceMappingURL=center.d.ts.map