export default Collapsable; declare function Collapsable({ t, children, height, threshold, initialVisibility, style, alwaysCollapsed, editorPreview, isOnOverlay }: { t: any; children: any; height: any; threshold: any; initialVisibility: any; style: any; alwaysCollapsed: any; editorPreview: any; isOnOverlay: any; }): JSX.Element; declare namespace Collapsable { namespace propTypes { const t: PropTypes.Requireable<(...args: any[]) => any>; const children: PropTypes.Validator; const height: PropTypes.Requireable; desktop: PropTypes.Requireable; }>>; const initialVisibility: PropTypes.Requireable; const threshold: PropTypes.Requireable; const style: PropTypes.Requireable; const editorPreview: PropTypes.Requireable; const alwaysCollapsed: PropTypes.Requireable; } namespace defaultProps { export { COLLAPSED_HEIGHT as height }; const initialVisibility_1: string; export { initialVisibility_1 as initialVisibility }; const threshold_1: number; export { threshold_1 as threshold }; const alwaysCollapsed_1: boolean; export { alwaysCollapsed_1 as alwaysCollapsed }; } } import PropTypes from "prop-types"; declare namespace COLLAPSED_HEIGHT { const mobile: number; const desktop: number; }