///
import { BreakpointConfig, BreakpointMap, ExprRule, GroupItem, HeaderProps, ItemLayout, ItemProps, LayoutConfig, LayoutType, OptionItem, OptionKey, PresetConfig, RenderItemProps, ResponsiveConfig, RuleConfig, SelectionValue, SelectionValueMultiple, SelectionValueObject, SelectionValueSingle, SelectorGroupProps, SelectorProps, SelectorVariant } from "./types.js";
import { Item } from "./Item.js";
import { SelectorGroup } from "./SelectorGroup.js";
//#region src/pro/Selector/index.d.ts
type SelectorComponentType = React.ForwardRefExoticComponent & React.RefAttributes> & {
Group: typeof SelectorGroup;
Item: typeof Item;
};
declare const Selector: SelectorComponentType;
//#endregion
export { Selector };