import { ReactElement } from 'react'; export type GridLayoutProps = { children: ReactElement[]; distance?: string; dataTestid?: string; elementMinWidth?: number; }; /** * The Grid Layout component renders children that will take on a variable amount of columns depending on available screen size. */ export declare function BCGridLayout({ children, distance, elementMinWidth, dataTestid }: GridLayoutProps): import("@emotion/react/jsx-runtime").JSX.Element;