import * as React from "react"; import { ResponsiveValue, ThemeValue, RequiredTheme } from "styled-system"; import { AllSystemProps } from "./system/unions"; export declare type FourUpProps = AllSystemProps & React.HTMLAttributes & { children: React.ReactNodeArray; gx: ResponsiveValue>; gy: ResponsiveValue>; gap: ResponsiveValue>; }; export declare const FourUp: { ({ children, gap, gx, gy, ...props }: FourUpProps): JSX.Element; displayName: string; };