/**
 * Buffer-oriented structure representing network configuration.
 */
export interface NetworkOptions {
    panId: number;
    extendedPanId: Buffer;
    channelList: number[];
    networkKey: Buffer;
    networkKeyDistribute: boolean;
    hasDefaultExtendedPanId?: boolean;
}
//# sourceMappingURL=network-options.d.ts.map