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