/// export interface ActionsContextType { visible?: boolean; setVisible?: (visible: boolean) => void; refreshTableData?: () => void; onClose?: () => void; beforeClose?: () => boolean | Promise; setBeforeClose?: (beforeClose: () => boolean | Promise) => void; } declare const ActionsContext: import("react").Context; export default ActionsContext;