import { DivProps } from "../types/index.mjs";
import { CSSProperties, ReactNode } from "react";
import { NumberSize } from "re-resizable";

//#region src/DraggableSideNav/type.d.ts
interface DraggableSideNavProps extends Omit<DivProps, 'children' | 'onSelect'> {
  backgroundColor?: string;
  /**
   * Body content (main content area)
   * Function that receives expand state
   */
  body: (expand: boolean) => ReactNode;
  /**
   * Classnames for internal components
   */
  classNames?: {
    body?: string;
    container?: string;
    content?: string;
    footer?: string;
    handle?: string;
    header?: string;
  };
  /**
   * Whether the panel is expanded by default
   * @default true
   */
  defaultExpand?: boolean;
  /**
   * Default width (number format)
   */
  defaultWidth?: number;
  /**
   * Whether the panel is expanded (controlled)
   */
  expand?: boolean;
  /**
   * Whether the panel can be expanded/collapsed
   * @default true
   */
  expandable?: boolean;
  /**
   * Footer content
   * Can be a static element or a function that receives expand state
   */
  footer?: ReactNode | ((expand: boolean) => ReactNode);
  /**
   * Header content
   * Can be a static element or a function that receives expand state
   */
  header?: ReactNode | ((expand: boolean) => ReactNode);
  /**
   * Maximum width
   */
  maxWidth?: number;
  /**
   * Minimum width when expanded (does not affect collapsed width which is always 64px)
   * Only applies when the panel is in expanded state
   * @default 64
   */
  minWidth?: number;
  /**
   * Callback when expand state changes
   */
  onExpandChange?: (expand: boolean) => void;
  /**
   * Callback when menu item is selected
   */
  onSelect?: (key: string) => void;
  /**
   * Callback when width changes
   */
  onWidthChange?: (delta: NumberSize, width: number) => void;
  /**
   * Callback when actively resizing width
   */
  onWidthDragging?: (delta: NumberSize, width: number) => void;
  /**
   * Placement of the side nav
   * @default 'left'
   */
  placement?: 'left' | 'right';
  /**
   * Whether to enable resizing
   * @default true
   */
  resizable?: boolean;
  /**
   * Whether to show border
   * @default true
   */
  showBorder?: boolean;
  /**
   * Whether to show handle for toggling
   * @default true
   */
  showHandle?: boolean;
  showHandleHighlight?: boolean;
  /**
   * Whether to show handle when collapsed
   * @default false
   */
  showHandleWhenCollapsed?: boolean;
  /**
   * Custom styles
   */
  styles?: {
    body?: CSSProperties;
    container?: CSSProperties;
    content?: CSSProperties;
    footer?: CSSProperties;
    handle?: CSSProperties;
    header?: CSSProperties;
  };
  /**
   * Expanded width (controlled)
   * This represents the width when expanded, not the current displayed width
   * The actual displayed width will be `width` when expanded, or `minWidth` when collapsed
   */
  width?: number;
}
//#endregion
export { DraggableSideNavProps };
//# sourceMappingURL=type.d.mts.map