UNPKG

@ansible/ansible-ui-framework

Version:

A framework for building applications using PatternFly.

9 lines (8 loc) 360 B
import { PageSelectOption } from './PageSelectOption'; export interface PageToggleGroupProps<ValueT> { id?: string; value: ValueT | undefined; onSelect: (value: ValueT) => void; options: PageSelectOption<ValueT>[]; } export declare function PageToggleGroup<ValueT>(props: PageToggleGroupProps<ValueT>): import("react/jsx-runtime").JSX.Element;