import { FC } from 'react'; import { BoxProps } from '../Box'; import { CollapseProp } from './styled'; export type CollapseProps = BoxProps & CollapseProp; export declare const Collapse: FC;