import type { BlockNode } from '#strapi-blocks-renderer/types';
import type { VNode } from 'vue';
export interface UseBlocksTextReturn {
    text: VNode[];
}
export declare const useBlocksText: (blockNodes: BlockNode[]) => UseBlocksTextReturn;
