import { StoryblokRichTextNode, StoryblokRichTextOptions } from './types';
/**
 * Creates a rich text resolver with the given options.
 *
 * @export
 * @template T
 * @param {StoryblokRichTextOptions<T>} [options]
 * @return {*}
 */
export declare function richTextResolver<T>(options?: StoryblokRichTextOptions<T>): {
    render: (node: StoryblokRichTextNode<T>) => T;
};
