react-native-zoom-toolkit
Version:
Most complete set of pinch to zoom utilites for React Native
9 lines • 380 B
TypeScript
import React from 'react';
import Gallery from './Gallery';
import type { GalleryProps, GalleryRefType } from './types';
type GalleryPropsWithRef<T> = GalleryProps<T> & {
ref?: React.ForwardedRef<GalleryRefType>;
};
declare const _default: <T>(props: GalleryPropsWithRef<T>) => ReturnType<typeof Gallery>;
export default _default;
//# sourceMappingURL=GalleryProvider.d.ts.map