/// import { BadgeLocation, LabelPosition, Node } from '../../types'; import { WithContextMenuProps, WithDndDropProps, WithDragNodeProps, WithSelectionProps } from '../../behavior'; import { CollapsibleGroupProps } from './types'; declare type DefaultGroupCollapsedProps = { children?: React.ReactNode; className?: string; element: Node; droppable?: boolean; canDrop?: boolean; dropTarget?: boolean; dragging?: boolean; hover?: boolean; label?: string; secondaryLabel?: string; showLabel?: boolean; hideContextMenuKebab?: boolean; labelPosition?: LabelPosition; truncateLength?: number; labelIconClass?: string; labelIcon?: string; labelIconPadding?: number; badge?: string; badgeColor?: string; badgeTextColor?: string; badgeBorderColor?: string; badgeClassName?: string; badgeLocation?: BadgeLocation; labelClassName?: string; } & CollapsibleGroupProps & WithDragNodeProps & WithSelectionProps & WithDndDropProps & WithContextMenuProps; declare const _default: import("react").FunctionComponent; export default _default; //# sourceMappingURL=DefaultGroupCollapsed.d.ts.map