import type { AdbFeature } from "./features.js"; import type { AdbServerClient } from "./server/client.js"; export declare const AdbBannerKey: { readonly Product: "ro.product.name"; readonly Model: "ro.product.model"; readonly Device: "ro.product.device"; readonly Features: "features"; }; export type AdbBannerKey = (typeof AdbBannerKey)[keyof typeof AdbBannerKey]; export declare class AdbBanner { #private; static parse(banner: string): AdbBanner; get state(): AdbServerClient.ConnectionState | undefined; get product(): string | undefined; get model(): string | undefined; get device(): string | undefined; get features(): readonly AdbFeature[]; constructor(state: AdbServerClient.ConnectionState | undefined, product: string | undefined, model: string | undefined, device: string | undefined, features: readonly AdbFeature[]); } //# sourceMappingURL=banner.d.ts.map