import { type PeerCertificate } from 'node:tls'; import { type DriverInfo } from '../../live-logging.js'; import { type SmartThingsCommand } from '../smartthings-command.js'; export declare const chooseHubDrivers: (command: SmartThingsCommand, driversList: DriverInfo[], commandLineDriverId?: string) => Promise; type KnownHub = { hostname: string; fingerprint: string; }; export declare const getKnownHubs: (knownHubsPath: string) => Promise>>; export declare const checkServerIdentity: (command: SmartThingsCommand, authority: string, cert: PeerCertificate) => Promise; export {}; //# sourceMappingURL=hub-drivers.d.ts.map