import React from 'react'; import { FormInstance } from 'antd'; import type { IntlType } from 'ls-pro-provider'; export declare type ActionsProps = { submitter: React.ReactNode; /** 是否收起 */ collapsed?: boolean; /** 收起按钮的事件 */ onCollapse?: (collapsed: boolean) => void; setCollapsed?: (collapse: boolean) => void; isForm?: boolean; style?: React.CSSProperties; /** 收起按钮的 render */ collapseRender?: ((collapsed: boolean, /** 是否应该展示,有两种情况 列只有三列,不需要收起 form 模式 不需要收起 */ props: ActionsProps, intl: IntlType) => React.ReactNode) | false; columns?: any[]; columnState?: any; setColumnState?: any; searchSetting?: boolean | { key?: string; resCode?: string; afterLoad?: () => void; }; orgState?: any; tableUtils?: any; modalItems: () => any[]; form: FormInstance; }; /** * FormFooter 的组件,可以自动进行一些配置 * * @param props */ declare const Actions: React.FC; export default Actions;