import { JSX } from 'react';
export type CollectionProps = {
    condensed?: boolean;
} & JSX.IntrinsicElements['ul'];
export declare const Collection: ({ children, className, condensed, ...ulProps }: CollectionProps) => JSX.Element;
