import * as React from 'react'; import type { AccordionProps } from "../Accordion/index.js"; import type { ActionTooltipProps } from "../ActionTooltip/index.js"; import type { ActionsPanelProps } from "../ActionsPanel/index.js"; import type { AlertProps } from "../Alert/index.js"; import type { ArrowToggleProps } from "../ArrowToggle/index.js"; import type { AvatarProps } from "../Avatar/index.js"; import type { AvatarStackProps } from "../AvatarStack/index.js"; import type { BreadcrumbsProps } from "../Breadcrumbs/index.js"; import type { ButtonCommonProps } from "../Button/Button.js"; import type { CardProps } from "../Card/index.js"; import type { CheckboxProps } from "../Checkbox/index.js"; import type { ClipboardButtonProps } from "../ClipboardButton/index.js"; import type { ClipboardIconProps } from "../ClipboardIcon/index.js"; import type { CopyToClipboardProps } from "../CopyToClipboard/index.js"; import type { DefinitionListProps } from "../DefinitionList/index.js"; import type { DialogProps } from "../Dialog/index.js"; import type { DisclosureProps } from "../Disclosure/index.js"; import type { DividerProps } from "../Divider/index.js"; import type { DrawerProps } from "../Drawer/index.js"; import type { DropdownMenuProps } from "../DropdownMenu/index.js"; import type { FilePreviewProps } from "../FilePreview/index.js"; import type { HelpMarkProps } from "../HelpMark/index.js"; import type { HotkeyProps } from "../Hotkey/index.js"; import type { IconProps } from "../Icon/index.js"; import type { LabelProps } from "../Label/index.js"; import type { LinkProps } from "../Link/index.js"; import type { LoaderProps } from "../Loader/index.js"; import type { MenuProps } from "../Menu/index.js"; import type { ModalProps } from "../Modal/index.js"; import type { NumberInputProps } from "../NumberInput/index.js"; import type { OverlayProps } from "../Overlay/index.js"; import type { PaginationProps } from "../Pagination/index.js"; import type { PaletteProps } from "../Palette/index.js"; import type { PinInputProps } from "../PinInput/index.js"; import type { PlaceholderContainerProps } from "../PlaceholderContainer/index.js"; import type { PopoverProps } from "../Popover/index.js"; import type { PopupProps } from "../Popup/index.js"; import type { PortalProps } from "../Portal/index.js"; import type { ProgressProps } from "../Progress/index.js"; import type { RadioProps } from "../Radio/index.js"; import type { RadioGroupProps } from "../RadioGroup/index.js"; import type { SegmentedRadioGroupProps } from "../SegmentedRadioGroup/index.js"; import type { SelectProps } from "../Select/index.js"; import type { SheetProps } from "../Sheet/index.js"; import type { SkeletonProps } from "../Skeleton/index.js"; import type { SliderProps } from "../Slider/index.js"; import type { SpinProps } from "../Spin/index.js"; import type { StepperProps } from "../Stepper/index.js"; import type { SwitchProps } from "../Switch/index.js"; import type { TableColumnSetupProps } from "../TableColumnSetup/index.js"; import type { TextProps } from "../Text/index.js"; import type { TocProps } from "../Toc/index.js"; import type { TooltipProps } from "../Tooltip/index.js"; import type { UserProps } from "../User/index.js"; import type { UserLabelProps } from "../UserLabel/index.js"; import type { TextAreaProps } from "../controls/TextArea/index.js"; import type { TextInputProps } from "../controls/TextInput/index.js"; import type { TabListProps, TabPanelProps, TabProps, TabProviderProps } from "../tabs/index.js"; export interface ComponentDefaultPropsMap { Accordion?: Partial>; ActionsPanel?: Partial; ActionTooltip?: Partial; Alert?: Partial; ArrowToggle?: Partial; Avatar?: Partial; AvatarStack?: Partial; Breadcrumbs?: Partial; Button?: Partial; Card?: Partial; Checkbox?: Partial; ClipboardButton?: Partial; ClipboardIcon?: Partial; CopyToClipboard?: Partial; DefinitionList?: Partial; Dialog?: Partial; Disclosure?: Partial; Divider?: Partial; Drawer?: Partial; DropdownMenu?: Partial>; FilePreview?: Partial; HelpMark?: Partial; Hotkey?: Partial; Icon?: Partial; Label?: Partial; Link?: Partial; Loader?: Partial; Menu?: Partial; Modal?: Partial; NumberInput?: Partial; Overlay?: Partial; Pagination?: Partial; Palette?: Partial; PinInput?: Partial; PlaceholderContainer?: Partial; Popover?: Partial; Popup?: Partial; Portal?: Partial; Progress?: Partial; Radio?: Partial; RadioGroup?: Partial; SegmentedRadioGroup?: Partial>; Select?: Partial>; Sheet?: Partial; Skeleton?: Partial; Slider?: Partial>; Spin?: Partial; Stepper?: Partial; Switch?: Partial; TableColumnSetup?: Partial; Tab?: Partial; TabList?: Partial; TabPanel?: Partial; TabProvider?: Partial; Text?: Partial>; TextArea?: Partial; TextInput?: Partial; Toc?: Partial; Tooltip?: Partial; User?: Partial; UserLabel?: Partial; } export declare const PrivateDefaultPropsContext: React.Context; export declare function PrivateDefaultPropsProvider({ value, children, }: { value?: ComponentDefaultPropsMap; children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;