import { type Device } from '@smartthings/core-sdk'; import { type ChooseFunction } from './util-util.js'; export type ChooseHubFnOptions = ({ locationId?: string | string[]; } | { includeOnlyOwnedHubs: true; }) & { /** * Limit hubs to those with the specified driver installed. */ withInstalledDriverId?: string; }; export declare const chooseHubFn: (options?: ChooseHubFnOptions) => ChooseFunction; export declare const chooseHub: ChooseFunction; //# sourceMappingURL=hubs-choose.d.ts.map