import { TransportMessage } from "./message.js";
export declare const WAIT_FOR_PEERS_TIME = 5000;
export declare class ReplicatorInfo extends TransportMessage {
    fromId?: string;
    topic: string;
    store: number;
    heads?: string[];
    constructor(props?: {
        fromId?: string;
        topic: string;
        store: number;
        heads?: string[];
    });
}
