import React from 'react'; type WrapProps = { gap?: React.CSSProperties['gap']; gapX?: React.CSSProperties['gap']; gapY?: React.CSSProperties['gap']; }; declare const Wrap: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("styled-system").LayoutProps>> & import("styled-system").FlexboxProps>> & import("styled-system").GridProps>> & import("styled-system").PositionProps>> & import("styled-system").SpaceProps>, string | number | symbol> & import("styled-system").TypographyProps>> & import("../styles/system").BgProps & import("../styles/system").ColorProps & import("../styles/system").VisibilityProps & import("../styles/system").CursorProps & import("../styles/system").BoxSizingProps & { row?: boolean | undefined; col?: boolean | undefined; center?: boolean | undefined; } & WrapProps, never>; export default Wrap;