import type { AnyTRPCRouter } from "@trpc/server"; import { type TrpcPanelExtraOptions } from "@aeolun/trpc-router-parser"; export type RenderOptions = { url: string; wsUrl?: string; cache?: boolean; subscriptionTransport?: "websocket" | "sse"; onContentSecurityPolicy?: (hashes: { script: string; style: string; }) => void; } & TrpcPanelExtraOptions; export declare function renderTrpcPanel(router: AnyTRPCRouter, options: RenderOptions): string;