import { CSSProperties } from "styled-components"; interface GridProps extends CSSProperties { children?: unknown; hoverColor?: CSSProperties["backgroundColor"]; hoverFontWeight?: CSSProperties["fontWeight"]; hoverPointer?: CSSProperties["cursor"]; } declare const Grid: import("styled-components").StyledComponent<"div", any, GridProps, never>; export { Grid };