@octopusdeploy/design-system-components
Version:
The design systems component library.
8 lines (7 loc) • 488 B
TypeScript
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 {};