import * as React from 'react';
export type CardsProps = React.PropsWithChildren<{
    columns?: number;
    cardMinWidth?: number;
    className?: string;
    ariaLabel?: string;
}>;
export declare function Cards({ cardMinWidth, columns, className, children, ariaLabel }: CardsProps): React.JSX.Element;
