import { IColProps, IRowProps } from './types'; export declare function Col({ breakpointsConfig, children, isFullWidth, order, span, ...props }: IColProps): JSX.Element; declare function Row({ alignItems, justifyItems, colGap, rowGap, children, xs, sm, md, lg, width, ...props }: IRowProps): JSX.Element; declare namespace Row { var Col: typeof import("./Row").Col; } export default Row;