import { IRadioProps } from '@blueprintjs/core'; import { StyledProps } from '@harnessio/design-system'; import React, { FormEvent } from 'react'; export interface RadioGroupProps extends Omit, StyledProps { /** onChange event handler */ onChange?: (event: FormEvent) => void; /** className to be appended to default className */ className?: string; /** Component children */ children?: React.ReactNode; } export interface RadioProps extends Omit, StyledProps { /** onChange event handler */ onChange?: (event: FormEvent) => void; /** className to be appended to default className */ className?: string; } declare function RadioGroup(props: RadioGroupProps): React.ReactElement; declare function Radio(props: RadioProps): React.ReactElement; export { Radio, RadioGroup };