import { TimeoutProps } from 'react-transition-group/Transition'; import { CSSProperties, HTMLAttributes, ReactElement, RefCallback } from 'react'; import { TransitionState } from '@wix/bex-core'; export interface CollapseProps extends Omit, 'in'> { children: ReactElement<{ className?: string; style?: CSSProperties; }>; state: TransitionState; dataHook?: string; style?: HTMLAttributes['style']; rootRef?: RefCallback; } declare function _Collapse(props: CollapseProps): JSX.Element; export declare const Collapse: typeof _Collapse & { displayName: string; }; export {}; //# sourceMappingURL=Collapse.d.ts.map