UNPKG

@octopusdeploy/design-system-components

Version:
8 lines (7 loc) 488 B
import * as React from "react"; import type { FormFieldProps } from "../FormFieldProps"; import type { RadioButtonGroupProps } from "./RadioButtonGroup"; interface BooleanRadioButtonGroupProps extends Omit<RadioButtonGroupProps<string>, keyof FormFieldProps<string>>, FormFieldProps<boolean> { } export declare function BooleanRadioButtonGroup({ value, onChange, ...otherProps }: React.PropsWithChildren<BooleanRadioButtonGroupProps>): import("react/jsx-runtime").JSX.Element; export {};