import React from "react"; import { type TextProps } from "../Text/index.js"; import { type VariantProps } from "../utils.js"; declare const formComponentDescriptionVariants: (props?: ({ disabled?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type FormComponentDescriptionProps = TextProps & VariantProps & { text?: React.ReactNode; }; declare const FormComponentDescription: (({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null) & { original: ({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null; originalName: string; displayName: string; } & { original: (({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null) & { original: ({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types").ComponentDecorator<(({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null) & { original: ({ text, disabled, className, ...props }: FormComponentDescriptionProps) => React.JSX.Element | null; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { FormComponentDescription, type FormComponentDescriptionProps };