import { NodeFilterType, PossibleNodeConfigType, SortedNodeFilterType } from '../types'; export declare const getSingboxNodes: (list: ReadonlyArray, filter?: NodeFilterType | SortedNodeFilterType) => Record[]; /** * sing-box 将 Tailscale 等节点视为 endpoint 而非 outbound,需要单独放入配置的 * `endpoints` 字段中。 * * @see https://sing-box.sagernet.org/configuration/endpoint/tailscale */ export declare const getSingboxEndpoints: (list: ReadonlyArray, filter?: NodeFilterType | SortedNodeFilterType) => Record[]; export declare const getSingboxNodeNames: (list: ReadonlyArray, filter?: NodeFilterType | SortedNodeFilterType) => ReadonlyArray;