import { OutgoingRequestDelegate, RequestOptions } from "../core/messages/outgoing-request.js";
/**
 * Options for {@link Registerer.register}.
 * @public
 */
export interface RegistererRegisterOptions {
    /** See `core` API. */
    requestDelegate?: OutgoingRequestDelegate;
    /** See `core` API. */
    requestOptions?: RequestOptions;
}
