import type { PropsWithChildren } from 'react';
interface CollapseProps {
    dir?: 'col' | 'row';
    id?: string;
    open?: boolean;
}
declare function Collapse({ children, dir, id, open, }: PropsWithChildren<CollapseProps>): JSX.Element | null;
export default Collapse;
