import React from 'react'; import { DefaultProps } from '@asuikit/styles'; export interface CenterProps extends DefaultProps { variant?: string; /** Content that should be centered vertically and horizontally */ children: React.ReactNode; /** Set to true to use inline-flex instead of flex */ inline?: boolean; } export declare const _Center: React.ForwardRefExoticComponent>; export declare const Center: ((props: import("@asuikit/utils").PolymorphicComponentProps) => React.ReactElement>) & Omit, "component" | keyof CenterProps> & { ref?: any; }) | (CenterProps & { component: React.ElementType; })>, never> & Record; //# sourceMappingURL=Center.d.ts.map