import React from 'react'; import { ViewStyle } from 'react-native'; import { IBoxProps } from '../../primitives'; export declare type ICollapseProps = IBoxProps & { style?: ViewStyle; endingHeight?: number; startingHeight?: number; duration?: number; animateOpacity?: boolean; isOpen?: boolean; onAnimationEnd?: Function; onAnimationStart?: Function; }; declare const _default: React.MemoExoticComponent<({ endingHeight, startingHeight, duration, isOpen, onAnimationEnd, onAnimationStart, ...props }: ICollapseProps) => JSX.Element>; export default _default;