import { InnerProviderProps, WithProvider } from './types'; /** * Wraps the application with auth and info hooks for use with the fastapi-rtk python backend library. */ export declare const Provider: (props: InnerProviderProps) => import("react/jsx-runtime").JSX.Element; /** * Higher-order component to wrap a component with Provider. * * @param providerProps - The props passed to the Provider, or a function that returns them. * @param Component - The component to wrap. * @param options - Additional options for the HOC. * @returns The wrapped component. */ export declare const withProvider: WithProvider;