import { HttpAction } from '../../action';
import { List } from '../../message/list';
import { Action } from './Action';
import { IconType } from './IconType';
import { StyleType } from './StyleType';
import { TextType } from './TextType';
export type CollapseType = Action & TextType & {
    expandedDivider?: boolean;
    isExpanded?: boolean;
    subList?: (string | HttpAction | List)[];
    url?: string;
    style?: StyleType;
    textMetric?: string;
    customOpenIcon?: IconType;
    customCloseIcon?: IconType;
};
