import type { MarkdownEditorInstance } from "./editor-public-types.js"; import type { MarkdownEditorOptions } from "./types.js"; export type UseMarkdownEditorProps = MarkdownEditorOptions; export declare function useMarkdownEditor(props: UseMarkdownEditorProps, deps?: React.DependencyList): MarkdownEditorInstance;