import React from "react";
import { Theme as ThemeElement } from "../src";
import "../src/register.js";
export { Theme as ThemeElement } from "../src";
export type Props = React.HTMLAttributes<HTMLElement> & {
    children?: React.ReactNode;
    className?: string;
};
export type Attributes = React.HTMLAttributes<HTMLElement> & {
    children?: React.ReactNode;
    class?: string;
};
export declare const Theme: React.MemoExoticComponent<React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLElement> & {
    children?: React.ReactNode;
    className?: string | undefined;
} & {
    children?: React.ReactNode;
} & React.RefAttributes<ThemeElement>>>;
