interface CrtshCert { issuer: string; commonName: string; nameValue: string; notBefore: string; notAfter: string; id: number; } interface CrtshResult { domain: string; totalCerts: number; uniqueSubdomains: string[]; certificates: CrtshCert[]; } export declare function crtshSearch(domain: string, excludeExpired?: boolean): Promise; export {}; //# sourceMappingURL=index.d.ts.map