import type { BPElementArgs, ViewRenderContext } from "../contracts/registry.js"; export interface BPElementProps { readonly ctx: ViewRenderContext; readonly service: string; readonly path?: string; readonly fragment: string; readonly args?: BPElementArgs; readonly children?: unknown; } /** Typed JSX helper. `ctx` resolves the request server-side and is never serialized. */ export declare function BPElement(props: BPElementProps): string; //# sourceMappingURL=element.d.ts.map