import React from 'react'; type ExpandableRowContentProps = { children?: React.ReactNode; }; /** * __Expandable row content__ * * Contains expandable content. Uses a context provider to allow children * to identify if they are expandable content. */ declare const ExpandableRowContent: ({ children }: ExpandableRowContentProps) => React.JSX.Element; export default ExpandableRowContent;