import { HTMLAttributes } from 'react';
declare type StyleProps = Partial<{
show: boolean;
timeout: number;
}>;
declare type Props = StyleProps & HTMLAttributes<HTMLDivElement>;
export declare const Collapse: (props: Props) => JSX.Element;
export {};