import React from 'react'; export interface IRowOption { icon?: string; iconClass?: string; textClass?: string; value: string; onClick?(): any; testId?: string; } export interface IRowOptionsProps { options: IRowOption[]; toggleComponent?: React.ReactNode; alignRight?: any; } export interface ICustomToggleProps { children: React.ReactNode; onClick(e: any): any; }