import React from 'react'; interface Props { label: string; value: string; description?: string; checked: boolean; onChange: (value: string) => void; tabIndex: number; } export declare const RadioButton: React.FC; export {};