import { BoxProps, PolymorphicFactory, StylesApiProps } from '../../core'; export type CenterStylesNames = 'root'; export interface CenterProps extends BoxProps, StylesApiProps { /** Content to center */ children?: React.ReactNode; /** If set, `inline-flex` is used instead of `flex` */ inline?: boolean; } export type CenterFactory = PolymorphicFactory<{ props: CenterProps; defaultRef: HTMLDivElement; defaultComponent: 'div'; stylesNames: CenterStylesNames; }>; export declare const Center: ((props: import("../..").PolymorphicComponentProps) => React.ReactElement) & Omit & { ref?: any; renderRoot?: (props: any) => any; }) | (CenterProps & { component: React.ElementType; renderRoot?: (props: Record) => any; })>, never> & import("../..").ThemeExtend<{ props: CenterProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CenterStylesNames; }> & import("../..").ComponentClasses<{ props: CenterProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CenterStylesNames; }> & import("../..").PolymorphicComponentWithProps<{ props: CenterProps; defaultRef: HTMLDivElement; defaultComponent: "div"; stylesNames: CenterStylesNames; }> & Record; export declare namespace Center { type Props = CenterProps; type Factory = CenterFactory; type StylesNames = CenterStylesNames; }