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