import { FlexProps } from "../Box"; export interface FlexGapProps extends FlexProps { gap?: string; rowGap?: string; columnGap?: string; } declare const FlexGap: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & FlexProps & FlexGapProps, never>; export default FlexGap;