import { ReactNode } from 'react'; interface IProps { handleSession: () => Promise; children?: ReactNode; } interface IProviderProps { children: ReactNode; publicApiKey: string; } export { IProps, IProviderProps };