export type CrudCommand = 'paginate' | 'detail' | 'create' | 'update' | 'delete'; export declare const normalizeResourceName: (name: string) => string; export declare const getResourceCommand: (dtoName: string, action: CrudCommand) => string; export declare const getSubResourceCommand: (parentDtoName: string, dtoName: string, action: CrudCommand) => string; //# sourceMappingURL=command.util.d.ts.map