export type SidebarState =
  | "overlap-left"
  | "overlap-right"
  | "side-left"
  | "side-right"
  | "move-left"
  | "move-right"
  | "hidden";
