import { RPCBase } from "../rpcBase"; export type Type = string; export declare function PeripheralChip(this: RPCBase): { getCaps: () => Promise<{ chipType?: string | undefined; count: number; model?: string | undefined; type: Type; }[]>; getVersion: (type: Type) => Promise<{ hardwareVersion: string; isMatching: number; softwareVersion: string; }[]>; }; //# sourceMappingURL=PeripheralChip.d.ts.map