import type { ComponentPropsWithRef } from "react"; import { type CardOptionProps } from "../CardOption.js"; import { type CheckboxProps } from "../Checkbox.js"; import { type DialogProps } from "../Dialog.js"; import { type FieldsetProps } from "../Fieldset.js"; import { type FileInputProps } from "../FileInput.js"; import { type HelperTextProps } from "../HelperText.js"; import { type InputComponentProps } from "../Input.js"; import { type LabelProps } from "../Label.js"; import { type LegendProps } from "../Legend.js"; import { type RadioProps } from "../Radio.js"; import { type SelectProps } from "../Select.js"; import { type SwitchProps } from "../Switch.js"; import { type TextareaProps } from "../Textarea.js"; export declare const CardOption: ({ ref, ...props }: CardOptionProps & ComponentPropsWithRef<"label">) => import("react/jsx-runtime.js").JSX.Element; export declare const Checkbox: ({ ref, ...props }: CheckboxProps & Omit, "type">) => import("react/jsx-runtime.js").JSX.Element; export declare const Dialog: ({ ref, ...props }: DialogProps & ComponentPropsWithRef<"dialog">) => import("react/jsx-runtime.js").JSX.Element; export declare const Fieldset: ({ ref, ...props }: FieldsetProps & ComponentPropsWithRef<"fieldset">) => import("react/jsx-runtime.js").JSX.Element; export declare const FileInput: ({ ref, ...props }: FileInputProps & Omit, "type">) => import("react/jsx-runtime.js").JSX.Element; export declare const HelperText: ({ ref, ...props }: HelperTextProps & ComponentPropsWithRef<"p">) => import("react/jsx-runtime.js").JSX.Element; export declare const Input: ({ ref, ...props }: InputComponentProps) => import("react/jsx-runtime.js").JSX.Element; export declare const Label: ({ ref, ...props }: LabelProps & ComponentPropsWithRef<"label">) => import("react/jsx-runtime.js").JSX.Element; export declare const Legend: ({ ref, ...props }: LegendProps & ComponentPropsWithRef<"legend">) => import("react/jsx-runtime.js").JSX.Element; export declare const Radio: ({ ref, ...props }: RadioProps & Omit, "type">) => import("react/jsx-runtime.js").JSX.Element; export declare const Select: ({ ref, ...props }: SelectProps & ComponentPropsWithRef<"select">) => import("react/jsx-runtime.js").JSX.Element; export declare const Switch: ({ ref, ...props }: SwitchProps & Omit, "type">) => import("react/jsx-runtime.js").JSX.Element; export declare const Textarea: ({ ref, ...props }: TextareaProps & ComponentPropsWithRef<"textarea">) => import("react/jsx-runtime.js").JSX.Element;