import { RuleFault } from "../rule-fault"; /** * Outputs a uniform string for server url errors * @param url The url to use on the output */ export declare const produceRuleFaultValueForUrl: (url: string) => string; /** * Outputs a uniform string for path errors * @param path The path to use on the output */ export declare const produceRuleFaultForPath: (path: string) => string; /** * Outputs a uniform string for path method errors * @param path The path to use on the output * @param method The method to use on the output * @param httpStatus The http status code to use on the output */ export declare const produceRuleFaultForPathMethod: (path: string, method: string, httpStatus: string) => string; /** * Pushes the `fault` into the `ruleFaults` array without overlapping values * @param fault The RuleFault to push * @param ruleFaults The RuleFault array to push into */ export declare const pushFault: (fault: RuleFault, ruleFaults: RuleFault[]) => void;