import { PropsWithChildren } from 'react'; import { FlexAlignItems, FlexJustifyContent } from '../flexBox'; export type HorizontalLayoutProps = { distance?: string; alignItems?: FlexAlignItems; justifyContent?: FlexJustifyContent; marginTop?: string; marginRight?: string; marginBottom?: string; marginLeft?: string; spaceBetween?: boolean; overflow?: string; width?: string; height?: string; dataTestid?: string; minWidth?: string; className?: string; rtl?: boolean; }; /** * The Horizontal Layout component is a simple way to align multiple elements horizontally. * * By default the contained controls are not wrapped. * If you want more sophisticated layout options, consider GridLayout or FlexBox components. */ export declare const BCHorizontalLayout: ({ distance, alignItems, justifyContent, marginTop, marginRight, marginBottom, marginLeft, spaceBetween, overflow, children, width, height, dataTestid, minWidth, className, rtl, }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element;