/** DeviceCode.Status enum. */ export declare const DeviceCodeStatus: { readonly Unknown: "UNKNOWN"; readonly Unpaired: "UNPAIRED"; readonly Paired: "PAIRED"; readonly Expired: "EXPIRED"; }; export type DeviceCodeStatus = (typeof DeviceCodeStatus)[keyof typeof DeviceCodeStatus];