import { VNode } from 'vue'; import { isArray, isString } from '@vue/shared'; export declare const isFragment: (node: any) => boolean; export declare const isComment: (node: VNode) => boolean; export declare const isValidElementNode: (node: unknown) => node is VNode; export declare const blobToDataUrl: (blob: Blob) => Promise; export declare const getUID: (prefix?: string | number, affix?: string | number) => string; export { isArray, isString };