import React from 'react';
import type { CustomThemeType } from '../../types';
/**
 *
 * @param theme - L'utente può passare un tema personalizzato che sovrascriverà il tema di default.
 * @param children - I componenti figli che utilizzeranno il tema fornito.
 */
export declare const LibThemeProvider: ({ theme, children, }: {
    theme?: CustomThemeType;
    children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
