import { IpfsImageFetchPayload } from '../types.ts'; type Props = { encryptionKey: string; url: string; nonce: string; alt?: string; width?: string; height?: string; className?: string; caption?: string; ipfsImageFetchFn: (_data: IpfsImageFetchPayload) => Promise<{ url: string; file: File; }>; ipfsHash: string; mimeType: string; authTag: string; }; export declare const SecureImageV2: import('react').ForwardRefExoticComponent>; export {};