import {createSafeContext} from'@mantine/core';
exportinterfaceTableActionContextValue {
primary: boolean;
}
exportconst [TableActionProvider, useTableActionContext] = createSafeContext<TableActionContextValue>(
'TableActionProvider component was not found in the tree',
);