import { PropsWithChildren } from 'react';
import { QueryClient } from '@tanstack/react-query';
type BlueskyProviderProps = PropsWithChildren & {
    baseUrl?: string;
    queryClient?: QueryClient;
    session?: any;
    token?: string;
};
export declare const BlueskyProvider: ({ children, baseUrl, queryClient: queryClientProp, session, token, }: BlueskyProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};
