import { Type } from "typebox"; export declare const DevicePairListParamsSchema: Type.TObject<{}>; export declare const DevicePairApproveParamsSchema: Type.TObject<{ requestId: Type.TString; }>; export declare const DevicePairRejectParamsSchema: Type.TObject<{ requestId: Type.TString; }>; export declare const DevicePairRemoveParamsSchema: Type.TObject<{ deviceId: Type.TString; }>; export declare const DeviceTokenRotateParamsSchema: Type.TObject<{ deviceId: Type.TString; role: Type.TString; scopes: Type.TOptional>; }>; export declare const DeviceTokenRevokeParamsSchema: Type.TObject<{ deviceId: Type.TString; role: Type.TString; }>; export declare const DevicePairRequestedEventSchema: Type.TObject<{ requestId: Type.TString; deviceId: Type.TString; publicKey: Type.TString; displayName: Type.TOptional; platform: Type.TOptional; deviceFamily: Type.TOptional; clientId: Type.TOptional; clientMode: Type.TOptional; role: Type.TOptional; roles: Type.TOptional>; scopes: Type.TOptional>; remoteIp: Type.TOptional; silent: Type.TOptional; isRepair: Type.TOptional; ts: Type.TInteger; }>; export declare const DevicePairResolvedEventSchema: Type.TObject<{ requestId: Type.TString; deviceId: Type.TString; decision: Type.TString; ts: Type.TInteger; }>;