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