import { DropdownListItem } from './dropdown/list'; import { GroupButtonProps, GroupDropdownProps, GroupColorProps, CollapseProps } from './group'; export declare type ButtonProps = { onActive?: () => boolean; onDisabled?: () => boolean; } & GroupButtonProps; export declare type DropdownProps = { onActive?: (items: Array) => string | Array; onDisabled?: () => boolean; } & GroupDropdownProps; export declare type ColorProps = { onActive?: () => string | Array; onDisabled?: () => boolean; } & GroupColorProps; export { CollapseProps };