import React from "react"; import { ComponentTheme } from "./ui/theme/common"; type ComponentProps = { className?: string; children?: React.ReactNode; tag?: React.ElementType; }; export type ThemedComponentProps
= P & { theme: ComponentTheme
;
};
export declare const ThemedComponent: React.ForwardRefExoticComponent