import type { FlexContainerAllProps } from './Container';
export type HorizontalProps = Omit<FlexContainerAllProps, 'direction'>;
declare function Horizontal({ children, ...props }: HorizontalProps): import("react/jsx-runtime").JSX.Element;
export default Horizontal;