import { DVault } from "../types/DVault"; /** * Convert a string to a set of NoteProps * @param calculateHash - when set, add `contentHash` property to the note * Default: false * @returns */ export declare function string2Note({ content, fname, vault, calculateHash, }: { content: string; fname: string; vault: DVault; calculateHash?: boolean; }): Pick, "schema" | "fname" | keyof import("../types").DNodeExplicitProps | "links" | "anchors" | "type" | "schemaStub" | "parent" | "children" | "data" | "body" | "custom" | "vault" | "contentHash" | "color" | "tags" | "image" | "traits">;