import type { HTMLAttributes } from "react";
import type { OrientationShape, ToolbarAlignmentProps } from "./ToolbarProps";
type collapsibleType = "dynamic" | "instant";
type booleanAttribute = "true" | "false";
export interface TooltrayProps extends ToolbarAlignmentProps, HTMLAttributes {
collapse?: boolean;
collapsed?: boolean;
collapsible?: boolean;
disabled?: boolean;
"data-collapsible"?: collapsibleType;
"data-collapsed"?: booleanAttribute;
isInsidePanel?: boolean;
overflowButtonIcon?: JSX.Element;
overflowButtonLabel?: string;
orientation?: OrientationShape;
}
export {};