import { HttpClient } from "../http-client";
export interface Peer {
    id: string;
    name: string;
    status: string;
    created_at: string;
    updated_at: string;
}
export interface PeersResponse {
    data: Peer[];
    message: string;
    meta: any;
    status: string;
}
export declare class PeersOperations {
    private httpClient;
    constructor(httpClient: HttpClient);
    /**
     * Read available peers
     * @returns Promise<Peer[]> - List of available peers
     * @example
     * await sdk.peers.read();
     */
    read(): Promise<Peer[]>;
}
