import { Result } from "neverthrow"; import type { AnyJson } from "./types"; import { DendronError } from "./error"; declare type YAMLDendronError = DendronError; declare type YAMLResult = Result; export declare const fromStr: (str: string, overwriteDuplicate?: boolean | undefined) => YAMLResult; export declare const toStr: (data: any) => YAMLResult; export {};