import { default as React } from 'react'; export interface CenterProps { vertical?: boolean; horizontal?: boolean; className?: string; children?: React.ReactNode; ref?: React.Ref; } export declare function Center(props: CenterProps): import("react/jsx-runtime").JSX.Element;