@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
8 lines (7 loc) • 421 B
TypeScript
import { ToggleGroupProps } from "./ToggleGroup.types.js";
export declare function useToggleGroup({ onChange, value, defaultValue, }: Pick<ToggleGroupProps, "onChange" | "value" | "defaultValue">): {
selectedValue: string;
setSelectedValue: (next: import("react").SetStateAction<string>) => void;
focusedValue: string;
setFocusedValue: import("react").Dispatch<import("react").SetStateAction<string>>;
};