import { type ComponentProps, type PropsWithChildren } from 'react'; import { RadioButton } from '../RadioButton'; import { Td } from './Td'; type Props = PropsWithChildren<{ /** RadioButtonのaccessible nameとして設定するテキストを参照するためのid属性値。同じ親Tr配下のTdかTh、もしくはその子孫要素のidを指定する。複数要素のテキストを指定する場合は空白区切りでidをつなぐ */ 'aria-labelledby': string; }> & ComponentProps & Pick, 'vAlign'>; export declare const TdRadioButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};