import { FC, ReactNode } from 'react';
import { IAutokitsTheme } from '../types/autokits/Theme';
export declare const AutokitsThemeProvider: FC<{
    theme: IAutokitsTheme;
    children: ReactNode;
}>;
