import { SelectionValue, SelectorGroupProps } from "./types.js"; import React from "react"; //#region src/pro/Selector/SelectorGroup.d.ts type SelectorGroupRef = { getValues: (includeHidden?: boolean) => Record; setValues: (values: Record) => void; validate: () => Promise>; reset: () => void; clear: () => void; }; declare const SelectorGroup: React.ForwardRefExoticComponent & React.RefAttributes>; //#endregion export { SelectorGroup };