import React from 'react'; import '../g.scss'; declare function CockpitList(props: ICockpitList): React.JSX.Element; export default CockpitList; export interface ICockpitList { value: ''; cockpitList: ICockpitObj; change: Function; } export interface ICockpitObj { total: number; data: cockpitData[]; } export interface cockpitData { autoCoverPicUrl: string; reportId: string | number; name?: string; }