import { ImageOptions, Version } from './types'; /** * Generates QR code images from the given parts and renders them as (animated) PNG. * * @param parts The string parts to encode as QR codes. * @param version The QR code version to use. * @param options An optional ImageOptions object. * @returns A Promise that resolves to an ArrayBuffer containing the image data; */ export declare function renderQRImage(parts: string[], version: Version, options?: ImageOptions): Promise;