import React from 'react';
import { Breakpoints, ColorThemes } from '../common/types';
import { SKELETON_ANIMATION_VARIANTS } from '../common/enums';
export declare const ReactSkeletonProvider: ({ children, value: { isDark, colorTheme, breakpoints, skeletonAnimation, }, }: Readonly<{
    value: {
        skeletonAnimation?: SKELETON_ANIMATION_VARIANTS;
        isDark?: boolean;
        breakpoints?: Breakpoints;
        colorTheme?: ColorThemes;
    };
    children: React.ReactNode;
}>) => React.JSX.Element;
