import React, { PropsWithChildren } from 'react';
import { ThemeParam } from '../styles/theme-provider/theme-provider';
export interface Props {
    theme?: ThemeParam;
}
declare const ZeitProvider: React.FC<PropsWithChildren<Props>>;
export default ZeitProvider;
