import React from 'react'; type ExpandableRowProps = { children: React.ReactNode; /** * Controlled: If the row is expanded. */ isExpanded?: boolean; /** * Uncontrolled: If the row is expanded by default. */ isDefaultExpanded?: boolean; }; /** * __Expandable row__ * * A context provider for `` to support expandable content. */ declare const ExpandableRow: ({ children, isExpanded, isDefaultExpanded, }: ExpandableRowProps) => React.JSX.Element; export default ExpandableRow;