export declare abstract class AbstractContextMenuOption<T, K> {
    actionId: string;
    actionText: string;
    action?: T;
    isActionEnabled?: K;
    isDivider?: boolean;
    iconClass?: string;
    backgroundIconColor?: string;
    iconColor?: string;
    isIconEnabled?: K;
    childrenContextMenuOptions?: Array<AbstractContextMenuOption<T, K>>;
    iconFontSize?: string;
    hasChildren(): boolean;
}
