import { RequestOptions } from 'https'; export declare function httpLinkChecker(url: string, options?: { reqOptions?: RequestOptions; verify?: (body: string) => boolean; }): Promise<{ code: string | number; errmsg: string; statusCode: number; url: string; redirected: boolean; body: string; }>;