import { ContextType } from 'react'; import type { Image } from 'react-native'; import type { SFSymbol } from 'sf-symbols-typescript'; type ImageSource = string | Parameters[0]; export declare const GaleriaContext: import("react").Context<{ initialIndex: number; open: boolean; urls: undefined | ImageSource[]; closeIconName: undefined | SFSymbol; /** * @deprecated */ ids: string[] | undefined; setOpen: (info: { open: true; src: string; initialIndex: number; id?: string; } | { open: false; }) => void; theme: "dark" | "light"; src: string; hideBlurOverlay: boolean; hidePageIndicators: boolean; }>; export type GaleriaContext = ContextType; export {}; //# sourceMappingURL=context.d.ts.map