/// import { AyActionProps } from './ay-action'; import { AnyKeyProps } from '../types/AnyKeyProps'; export declare const actionMap: AnyKeyProps; /** * 注册一个 action */ export declare const registerAction: (actionName: string, action: (props: AnyKeyProps, record: AnyKeyProps, searchTable: AnyKeyProps, form?: AnyKeyProps | undefined) => AnyKeyProps) => void; /** * 获得转换后 action props * @param props 当前 props * @param searchTable searchTable 对象 */ export declare const getActionProps: (props: AyActionProps, searchTable: any, form?: AnyKeyProps | undefined) => AnyKeyProps; declare function AyAction(props: AyActionProps): JSX.Element; declare namespace AyAction { var componentName: string; } export default AyAction;