import React from 'react'; import { ViewProps } from 'remax/one'; export interface Props extends ViewProps { /** * 是否折叠 * @default false */ folded?: boolean; /** * 手动设置高度 */ maxHeight?: string; children?: React.ReactNode; /** * 是否开启动画 * @default true */ animation?: boolean; } declare const _default: ({ folded, style, id, maxHeight: outMaxHeight, animation, ...props }: Props) => React.JSX.Element; export default _default;