import type { PRPCPluginOptions } from '.'; import * as babel from '@babel/core'; export declare const packageSource = "@solid-mediakit/prpc"; export declare function createTransform$(opts?: PRPCPluginOptions): ({ types: t, template: temp, }: { types: typeof babel.types; template: typeof babel.template; }) => babel.PluginObj; export declare function compilePRPC(code: string, id: string, opts?: PRPCPluginOptions): Promise<{ code: string; map: { version: number; sources: string[]; names: string[]; sourceRoot?: string | undefined; sourcesContent?: string[] | undefined; mappings: string; file: string; } | null | undefined; } | null>;