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