import { Transport } from "@icp-sdk/signer"; import { TransportType } from "../../types"; export type TransportBuilderRequest = { id?: string; transportType: TransportType; url: string; crypto?: Pick; window?: Window; windowOpenerFeatures?: string; }; export declare class TransportBuilder { private static builders; static build(request: TransportBuilderRequest): Promise; }