interface GridProps {
    maxWidth?: string;
    gridColumns?: string;
    gridGap?: string;
    padding?: string;
    color?: string;
}
declare const gridOverlay: (props?: GridProps | undefined) => void;
export { gridOverlay };
