import { DialogAction } from './dialog'; import { ProTableProps } from '..'; export interface DialogTableAction extends DialogAction { schema: ProTableProps; } export declare function useDialogTableAction(action: DialogTableAction, context?: any): { [x: string]: (e: import("react").MouseEvent) => Promise; }; export default useDialogTableAction;