import type { AxiosResponse } from "axios"; import type { C6RestfulModel } from "../types/ormInterfaces"; export declare function TestRestfulResponse(response: AxiosResponse | any, success: ((r: AxiosResponse) => (string | void)) | string | undefined, error: ((r: AxiosResponse) => (string | void)) | string | undefined): string | boolean | number; export declare function removePrefixIfExists(tableName: string, prefix: string): string; export declare function removeInvalidKeys(request: any, c6Tables: { [key: string]: (C6RestfulModel & { [key: string]: any; }); }): iRestObject;