export type UseInstafeedOptions = { scriptSrc: string; nonce?: string; }; declare global { interface Window { instafeedToggleSound?: (element?: HTMLElement) => void; instafeedTogglePlay?: (element?: HTMLElement) => void; instafeedSettings?: { sound: boolean; modalOpen?: string; }; } } export declare function useInstafeed({ scriptSrc, nonce }: UseInstafeedOptions): { status: import("../../../hooks/useLazyScriptLoad").ScriptStatus; };