import { type Channel } from '@smartthings/core-sdk'; import { type ChooseFunction } from '../util-util.js'; /** * Using this allows callers of `chooseChannel` to supply a `listItems` that returns a list of anything * that has both the channelId and name fields. */ export type ChannelChoice = Pick; export type ChooseChannelOptions = { includeReadOnly?: boolean; /** * Include only channels that have the specified driver id assigned to them. */ withDriverId?: string; }; export declare const chooseChannelFn: (options?: ChooseChannelOptions) => ChooseFunction; export declare const chooseChannel: ChooseFunction; //# sourceMappingURL=channels-choose.d.ts.map