type FsMap = Record; type CreateSvgUrlOptions = { format?: "svg" | "png"; pngWidth?: number; pngHeight?: number; pngDensity?: number; entrypoint?: string; simulationExperimentId?: string; showSolderMask?: boolean; }; declare function getCompressedBase64SnippetString(text: string): string; declare function getBase64PoundSnippetString(text: string): string; declare function getUncompressedSnippetString(base64CompressedSnippetString: string): string; declare function createSvgUrl(snippetOrFsMap: string | FsMap, svgType: "pcb" | "schematic" | "3d" | "pinout" | "schsim", options?: CreateSvgUrlOptions): string; declare function createBrowserPreviewUrl(tscircuitCode: string, view?: "pcb" | "schematic" | "3d"): string; declare function createPngUrl(tscircuitCode: string, view: "pcb" | "schematic" | "3d"): string; declare function createSnippetUrl(text: string, snippet_type?: string): string; export { type CreateSvgUrlOptions, type FsMap, createBrowserPreviewUrl, createPngUrl, createSnippetUrl, createSvgUrl, getBase64PoundSnippetString, getCompressedBase64SnippetString, getUncompressedSnippetString };