import React, { type ReactNode } from 'react'; type SelectableCellProps = { as: 'td' | 'th'; children?: ReactNode; }; /** * __Selectable cell__ * * A selectable cell primitive designed to be used for light weight composition. */ export declare const SelectableCell: ({ children, as }: SelectableCellProps) => React.JSX.Element; export {};