///
import { SFormItems } from '../components/form/types';
interface useExpandProps {
columns: number;
items: SFormItems[] | undefined;
showExpand?: boolean;
defaultExpand?: boolean;
maxRows?: number;
}
/**
* 控制展示收起相关配置的hook
*/
export default function useExpand({ columns, items, showExpand, defaultExpand, maxRows, }: useExpandProps): {
showCollapse: boolean;
expandNum: number;
expanded: boolean;
setExpanded: import("react").Dispatch>;
};
export {};