export interface RadioWithTooltipOption {
    value: any;
    label: string;
    tooltip?: string;
}
export declare function RadioWithTooltip(props: any): import("react/jsx-runtime").JSX.Element;
