import { AccessPoint } from './AccessPoint'; import { Writer, Reader } from 'protobufjs/minimal'; export interface AccessPointsConfig { optimalAps: AccessPoint[]; backupAps: AccessPoint[]; availablePorts: number[]; foreceLastConnectedAp: AccessPoint | undefined; } export declare const protobufPackage = "AcFunDanmu"; export declare const AccessPointsConfig: { encode(message: AccessPointsConfig, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): AccessPointsConfig; fromJSON(object: any): AccessPointsConfig; fromPartial(object: DeepPartial): AccessPointsConfig; toJSON(message: AccessPointsConfig): unknown; }; declare type Builtin = Date | Function | Uint8Array | string | number | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};