import { default as React } from 'react'; export interface CenterProps extends React.HTMLAttributes { /** Element type to render */ as?: React.ElementType; /** Width (CSS value or number for px) */ width?: string | number; /** Height (CSS value or number for px) */ height?: string | number; /** Max width constraint */ maxWidth?: string | number; /** Also center text */ textAlign?: boolean; /** Inline-flex instead of flex */ inline?: boolean; /** Children */ children?: React.ReactNode; } export declare const Center: React.MemoExoticComponent>>; export default Center;