export interface TdSwipeCellProps { disabled?: { type: BooleanConstructor; value?: boolean; }; left?: { type: ArrayConstructor; value?: Array; }; opened?: { type: null; value?: boolean | Array; }; right?: { type: ArrayConstructor; value?: Array; }; } export interface SwipeActionItem { text?: string; icon?: string | object; className?: string; style?: string; onClick?: () => void; [key: string]: any; }