import type { CSSProperties } from 'react';
export interface BoxSpacingProps {
    gutter?: number;
    rowGap?: number;
}
export declare const BoxGap: import("styled-components").RuleSet<NoInfer<BoxSpacingProps>>;
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<NoInfer<BoxProps>>;
export declare const BoxWrapper: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof BoxProps> & BoxProps, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof BoxProps> & BoxProps, never>>> & string;
export declare const InlineBox: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof BoxProps> & BoxProps, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof BoxProps> & BoxProps, never>>> & string;
export declare function Box({ children, ...props }: React.PropsWithChildren<BoxProps> & React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element;
