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