///
export default interface CollapseProps {
activeIdList: Array;
accordion: boolean;
onListChange: (id: any, collapse: any, openListIdCollection: any) => void;
}
export interface CollapseSubProps {
title: any;
isActive: boolean;
children: JSX.Element;
onListChange: () => void;
id?: number | string;
}