import React from 'react'; type Props = { children: React.ReactNode; }; export interface AuthState { token: string | null; } export declare const AuthProvider: ({ children }: Props) => JSX.Element; export {}; //# sourceMappingURL=AuthProvider.d.ts.map