import { Entity } from "../interfaces/types"; import { Fields } from "./fieldsHelper"; import { Actions } from "./inertiaActionsHelper"; interface listProps extends Record { actions: Actions[]; thActionsTitle: string; crudActions: { createTitle: string; editTitle: string; viewsTitle: string; deleteTitle: string; }; delModal: { yes: string; no: string; text: string; }; notFoundContent: string; searchBtn: string; resetBtn: string; entity: { name: string; uri: string; }; inlineActions: Actions[]; } export declare function inertiaListHelper(entity: Entity, req: ReqType, fields: Fields): listProps; export {};