import * as react_jsx_runtime from 'react/jsx-runtime'; import React__default, { ReactNode } from 'react'; import { RadioGroupProps as RadioGroupProps$1, ValidationResult, RadioProps, SelectProps as SelectProps$1, ListBoxItemProps, ListBoxProps, SectionProps, Header } from 'react-aria-components'; interface RadioGroupProps extends Omit { label?: string; children?: ReactNode; description?: string; errorMessage?: string | ((validation: ValidationResult) => string); } declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element; declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element; declare function CustomRadio(props: RadioProps): react_jsx_runtime.JSX.Element; interface AlignWidgetProps extends Omit { id?: string; actions?: string[]; actionsInfoMap?: Record, string]>; } declare function AlignWidget(props: AlignWidgetProps): react_jsx_runtime.JSX.Element; interface SelectItemObject { label: string; value: string; } interface SelectBaseProps extends Omit, 'children'> { label?: string; description?: string; errorMessage?: string | ((validation: ValidationResult) => string); items?: Iterable; children?: React__default.ReactNode | ((item: T) => React__default.ReactNode); } interface SelectProps extends SelectBaseProps { } declare function Select({ label, description, errorMessage, children, items, ...props }: SelectProps): react_jsx_runtime.JSX.Element; declare function SelectListBox(props: ListBoxProps): react_jsx_runtime.JSX.Element; declare function SelectItem(props: ListBoxItemProps): react_jsx_runtime.JSX.Element; declare function SelectSection(props: SectionProps): react_jsx_runtime.JSX.Element; declare function SelectSectionHeader(props: React__default.ComponentProps): react_jsx_runtime.JSX.Element; interface SizeWidgetProps extends Omit { id?: string; actions?: string[]; actionsInfoMap?: Record; } declare function SizeWidget(props: SizeWidgetProps): react_jsx_runtime.JSX.Element; interface WidthWidgetProps extends Omit { id?: string; actions?: string[]; actionsInfoMap?: Record, string]>; } declare function WidthWidget(props: WidthWidgetProps): react_jsx_runtime.JSX.Element; export { AlignWidget as A, CustomRadio as C, Radio as R, type SelectItemObject as S, WidthWidget as W, type SelectProps as a, Select as b, SelectItem as c, SelectListBox as d, SelectSection as e, SelectSectionHeader as f, SizeWidget as g, RadioGroup as h, type RadioGroupProps as i };