import { FC, PropsWithChildren } from "react";
interface PropsI {
    in: boolean;
    duration?: number;
}
export declare const Collapse: FC<PropsWithChildren<PropsI>>;
export {};
