import React from 'react'; export interface InstafeedProps { /** The full URL of the Instafeed script */ scriptSrc: string; /** The nonce string for CSP compliance */ nonce: string; /** CSS classes for the feed container */ className?: string; /** Optional style object */ style?: React.CSSProperties; } export declare const Instafeed: React.FC;