import { GroupAP } from "../models/GroupAP"; import { UserAP } from "../models/UserAP"; import { Entity, PropsField } from "../interfaces/types"; interface listProps extends Record { edit: boolean; view: boolean; btnBack: { title: string; link: string; }; passwordError: string; btnSave: { title: string; }; postLink: string; head: string; groupHead: string; fields: PropsField[]; groups: PropsField[]; locales: Record[]; userPretend: { label: string; postLink: string; }; } export declare function inertiaUserHelper(entity: Entity, req: ReqType, groups: GroupAP[], user?: UserAP, view?: boolean): listProps; export {};