import React, { FC } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type AutoCenterProps = { children?: React.ReactNode; } & NativeProps; export declare const AutoCenter: FC;