export interface IListItem { id: number | string; title: string; subtitle?: string; media?: any; } export interface OwnProps { data: IListItem[]; title: string; onClick: (cb: any) => void; isDisabled?: boolean; deleteRow?: (id: any) => any; } export interface State { disabledCurrent?: boolean; isClick?: boolean; } export declare type Props = OwnProps;