interface StSubdomainsResult { domain: string; subdomains: string[]; total: number; } interface StDnsHistoryRecord { values: string[]; type: string; firstSeen: string; lastSeen: string; organizations?: string[]; } interface StDnsHistoryResult { domain: string; type: string; records: StDnsHistoryRecord[]; total: number; } interface StWhoisResult { domain: string; registrar?: string; createdDate?: string; updatedDate?: string; expiresDate?: string; nameservers: string[]; contacts: { type: string; name?: string; organization?: string; email?: string; country?: string; }[]; } export declare function stSubdomains(domain: string, apiKey: string): Promise; export declare function stDnsHistory(domain: string, type: string, apiKey: string): Promise; export declare function stWhois(domain: string, apiKey: string): Promise; export {}; //# sourceMappingURL=index.d.ts.map