UNPKG

react-awesome-giphy

Version:
10 lines (9 loc) 312 B
import React from 'react'; import { Props } from '../index'; declare const useStore: () => Props | null; interface StoreProps { children: React.ReactNode; value: any; } declare const StoreProvider: ({ children, value }: StoreProps) => JSX.Element; export { StoreProvider, useStore as default };