/**
 * Represents the request for addNeighbors command.
 * @interface
 */
export interface IAddNeighborsRequest {
    /**
     * List of URI elements.
     */
    uris: string[];
}
