import type { MasterOrShadowAccessPoint } from "../modules/DistributedOperations/MasterOrShadowAccessPoint.ta.mjs"; /** * @summary Group access points into masters and shadows * @description * * Access points that are neither masters nor shadows are silently excluded from * both returned arrays. * * @param {MasterOrShadowAccessPoint[]} mosaps The access points to be grouped * @returns {Array} Master and shadow access points, respectively, in two arrays * @function */ export declare function splitIntoMastersAndShadows(mosaps: MasterOrShadowAccessPoint[]): [masters: MasterOrShadowAccessPoint[], shadows: MasterOrShadowAccessPoint[]]; export default splitIntoMastersAndShadows; //# sourceMappingURL=splitIntoMastersAndShadows.d.mts.map