import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const widgetContentVariants: (props?: ({ variant?: "accent" | "base" | "light" | null | undefined; elevation?: "sm" | "md" | "none" | "lg" | null | undefined; outline?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface WidgetContentProps extends VariantProps { className?: string; children: React.ReactNode; } declare const WidgetContent: { ({ children }: WidgetContentProps): React.JSX.Element; displayName: string; }; export { WidgetContent };