UNPKG

@react-querybuilder/chakra

Version:

Custom Chakra UI components for react-querybuilder

11 lines (10 loc) 555 B
import { RadioGroup as ChakraRadioGroup } from "@chakra-ui/react"; import * as React from "react"; export interface RadioProps extends ChakraRadioGroup.ItemProps { rootRef?: React.Ref<HTMLLabelElement>; inputProps?: React.InputHTMLAttributes<HTMLInputElement>; children?: React.ReactNode; value: string; } export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>; export declare const RadioGroup: React.ForwardRefExoticComponent<ChakraRadioGroup.RootProps & React.RefAttributes<HTMLDivElement>>;