import * as React from 'react'; type FlexDirection = 'row' | 'col' | 'row-reverse' | 'col-reverse'; type ResponsiveDirection = FlexDirection | Partial>; export interface ResponsiveStackProps extends React.HTMLAttributes { direction?: ResponsiveDirection; gap?: string; align?: string; justify?: string; wrap?: boolean; inline?: boolean; } /** Flex container that switches direction by breakpoint. Mobile-first. */ export declare function ResponsiveStack({ direction, gap, align, justify, wrap, inline, className, children, ...props }: ResponsiveStackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=responsive-stack.d.ts.map