import { FunctionComponent } from 'react';

interface GridOverlayProps {
    breakpoint?: boolean;
    maxWidth?: boolean;
    position?: 'fixed' | 'absolute';
    visible?: boolean;
}
declare const GridOverlay: FunctionComponent<GridOverlayProps>;

export { GridOverlay as default };
export type { GridOverlayProps };
