import type { BaseOptions } from "../types";
import { PersistentSubscriptionToAllInfo } from "./utils/mapPersistentSubscriptionInfo";
type ListPersistentSubscriptionsToAllOptions = BaseOptions;
declare module "../Client" {
    interface Client {
        /**
         * Lists persistent subscriptions to the $all stream.
         * @param options - List persistent subscriptions options.
         */
        listPersistentSubscriptionsToAll(options?: ListPersistentSubscriptionsToAllOptions): Promise<PersistentSubscriptionToAllInfo[]>;
    }
}
export {};
