import { LexicalValue, NormalizedInputValue } from "../../types"; /** * Value passed to the `RichTextEditor` component can be anything. This function normalizes some of the more common shapes * of input into a value that is either a `null` or a `LexicalValue`. */ export declare function normalizeInputValue(value: LexicalValue | null | undefined): NormalizedInputValue;