import React from 'react';
import { Session } from '../types/Session';
interface ContextProps {
    session: Session;
}
interface Props {
    session: Session;
    children: React.ReactNode;
}
export declare const SessionProvider: ({ session, children }: Props) => JSX.Element;
export declare const useSession: () => ContextProps;
export {};
