declare const _default: (reasonPhrase: string, ignoreCase?: boolean) => number | undefined; /** * Get the status code for a given reason phrase. * Optionally pass a second parameter to ignore case. * * @param reasonPhrase - e.g. OK * @param ignoreCase - ignore case while comparing, default: false * @returns - The corresponding status code as `number` for the given input `undefined` otherwise */ export default _default;