/// <reference types="react" />
import { FlexBasicProps } from "../FlexBasic";
import { CommonProps } from "../type";
export type CenterProps = Omit<FlexBasicProps, 'distribution' | 'direction' | 'align'>;
declare const Center: import("react").ForwardRefExoticComponent<CenterProps & CommonProps & import("react").RefAttributes<HTMLElement>>;
export default Center;
