export declare const getTEXtChunk: (blob: Blob) => Promise<{ keyword: string; text: string; } | null>; export declare const encodePngMetadata: ({ blob, metadata, }: { blob: Blob; metadata: string; }) => Promise; export declare const decodePngMetadata: (blob: Blob) => Promise; export declare const encodeSvgMetadata: ({ text }: { text: string; }) => Promise; export declare const decodeSvgMetadata: ({ svg }: { svg: string; }) => Promise;