import { PropsWithChildren } from 'react';
export { AppProviders as BaseAppProvider, queryClient } from '@gaddario98/react-core/providers';

interface AppProvidersProps extends PropsWithChildren {
    theme?: {
        background?: string;
        primary?: string;
        text?: string;
        card?: string;
        border?: string;
        notification?: string;
    };
    dark?: boolean;
}
declare const AppProviders: React.FC<AppProvidersProps>;

export { AppProviders };
export type { AppProvidersProps };
