import { PaintWorklet } from '../types'; /** * Creates a Blob from a paint worklet. Do not use this function in an environment with CSP (Content Security Policy) * @param name - name of the worklet * @param paintWorklet - either a class or javascript code * @param className - name of the class if `paintWorklet` is a string * @returns - a Blob */ export declare const blobify: (name: string, paintWorklet: typeof PaintWorklet | string, className?: string) => Blob;