import type { Established } from "./established"; /** Options for {@link accept}. */ export interface AcceptProps { version?: number; } /** * Server-side handshake: accepts a transport and performs the server half of the SETUP exchange. * * @param transport - The WebTransport session to accept * @param url - The URL of the connection * @param props - Optional configuration * @returns A promise that resolves to a Connection instance */ export declare function accept(transport: WebTransport, url: URL, props?: AcceptProps): Promise; //# sourceMappingURL=accept.d.ts.map