import { ModeType } from '../constants'; export interface Props { /** Adds custom classes to the element. */ className?: string; /** Row is expanded. */ expanded: boolean; /** Id for expanded row. */ expandableRowId: string; /** Text for hide button used for aria label. */ hideDetailsText: string; /** Text for show button used for aria label. */ showDetailsText: string; /** For display with less space. Discouraged to use together with interactive elements. */ mode?: ModeType; } export declare const TableExpanderCell: ({ expandableRowId, hideDetailsText, showDetailsText, expanded, className, mode, }: Props) => React.JSX.Element; export default TableExpanderCell;