import { Web5 } from '@web5/api';
export interface Web5Connection {
    web5: Web5;
    did: string;
}
export declare class DWeb5 {
    static connection: Web5Connection;
    static isConnected(): boolean;
    static connect({ name, verbose }: {
        name?: string;
        verbose?: boolean;
    }): Promise<Web5Connection>;
    static connectSync(verbose?: boolean): Web5Connection;
}
//# sourceMappingURL=dweb5.d.ts.map