import * as React from "react"; export interface ExpandableListItemProps { children: React.ReactNode; expandedContent: React.ReactNode; isExpanded?: boolean; onToggle?: () => void; defaultExpanded?: boolean; className?: string; } /** * ExpandableListItem component for collapsible list items * * Used in iCaptur for: * - Matched candidates list with details * - Expandable candidate information * - Collapsible data rows * * @example * ```tsx * *

Email: candidate@example.com

*

Phone: +1234567890

* * } * > *
Candidate Name - Product Designer
*
* ``` */ export declare const ExpandableListItem: React.ForwardRefExoticComponent>; //# sourceMappingURL=expandable-list-item.d.ts.map