import React from 'react'; export interface CollapsibleProps extends Omit, 'css'> { /** * To specify the content of the component */ items?: CollapsibleItem[]; setRef?: React.MutableRefObject | React.Ref; } export interface CollapsibleItem { list?: ListItem[]; title?: string; } export interface ListItem { link?: string; text?: string; }