import React from 'react';
export interface CenterProps extends React.ComponentPropsWithoutRef<'div'> {
    /** Content that should be centered vertically and horizontally */
    children: React.ReactNode;
}
export declare function Center({ style, className, ...others }: CenterProps): JSX.Element;
export declare namespace Center {
    var displayName: string;
}
//# sourceMappingURL=Center.d.ts.map