import { FC, HTMLAttributes } from 'react';
export interface WindowCenterProps extends HTMLAttributes<HTMLDivElement> {
    classes: any;
    offsetTop?: number;
}
declare const WindowCenter: FC<WindowCenterProps>;
export default WindowCenter;
