import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { TransitionImplementationProps } from './Transition'; /** @deprecated 設計師未定義,暫時標記為 deprecated */ export interface CollapseProps extends TransitionImplementationProps, Omit, 'children'> { /** * The height of the container while collapsed. * @default 0 */ collapsedHeight?: string | number; } /** * The react component for `mezzanine` transition collapse. * @deprecated 設計師未定義,暫時標記為 deprecated. * 目前 NavigationOption 與 Accordion 正在使用此元件. */ declare const Collapse: import("react").ForwardRefExoticComponent>; export default Collapse;