import { Plugin } from "unified";
interface RemarkHookOptions {
    remarkPlugins: Plugin[];
    rehypePlugins: Plugin[];
}
export declare function useRemark(initialContent?: string, options?: Partial<RemarkHookOptions>): readonly [import("atomico/types/vnode").VNode<import("atomico/types/vnode").VNodeKeyTypes, any, any[]>, (value: string | ((value: string) => string)) => string, import("vfile").VFile & {
    result: import("atomico/types/vnode").VNode<import("atomico/types/vnode").VNodeKeyTypes, any, any[]>;
}];
export {};
