import { type SourceError } from "../../errors/base"; import type { Result } from "../../types"; import { Representation } from "../mapper"; export declare function mapResultToScheme(res: Result): Result; export declare function mapErrorToScheme(error: SourceError): SourceError; export declare function showSchemeData(data: any): Representation; export declare function schemeVisualise(x: any): Representation; export declare function decodeValue(x: any): any;