import type { HTMLProps, ReactNode } from 'react';
import type { SpacingProps } from '../space/types';
export type CardListProps = {
    children: ReactNode;
} & SpacingProps & Omit<HTMLProps<HTMLUListElement>, 'children'>;
declare function CardList(props: CardListProps): import("react/jsx-runtime").JSX.Element;
export default CardList;
