import type { CSSProperties } from 'react'; export interface BoxSpacingProps { gutter?: number; rowGap?: number; } export declare const BoxGap: import("styled-components").RuleSet>; export interface BoxProps extends BoxSpacingProps { direction?: CSSProperties['flexDirection']; basis?: CSSProperties['flexBasis']; wrap?: CSSProperties['flexWrap']; align?: CSSProperties['alignItems']; justify?: CSSProperties['justifyContent']; gap?: CSSProperties['gap']; isStacked?: boolean; } export declare const BoxCss: import("styled-components").RuleSet>; export declare const BoxWrapper: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, keyof BoxProps> & BoxProps, never> & Partial, HTMLDivElement>, keyof BoxProps> & BoxProps, never>>> & string; export declare const InlineBox: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, keyof BoxProps> & BoxProps, never> & Partial, HTMLDivElement>, keyof BoxProps> & BoxProps, never>>> & string; export declare function Box({ children, ...props }: React.PropsWithChildren & React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element;