import React from "react";
import { RadioProps as BlueprintRadioProps } from "@blueprintjs/core";
export interface RadioButtonProps extends BlueprintRadioProps {
    /**
     * Hide the indicator.
     * The element cannot be identified as radio input then but a click on the children can be easily processed via `onChange` event.
     */
    hideIndicator?: boolean;
}
export declare const RadioButton: ({ children, className, hideIndicator, ...restProps }: RadioButtonProps) => React.JSX.Element;
export default RadioButton;
