declare module 'dom-to-image-more' { export interface Options { quality?: number width?: number height?: number style?: Record bgcolor?: string filter?: (node: Node) => boolean } export function toPng(node: Node, options?: Options): Promise export function toJpeg(node: Node, options?: Options): Promise export function toBlob(node: Node, options?: Options): Promise export function toPixelData(node: Node, options?: Options): Promise export function toSvg(node: Node, options?: Options): Promise }