import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import { BoxProps } from "../box/box.types.js";
import "../box/index.js";
import { ReactNode } from "react";
//#region src/breadcrumbs/breadcrumbs.types.d.ts
type BreadcrumbsProps = SystemProps & ThemingProps<'Breadcrumbs'>;
type BreadcrumbsItemProps = BoxProps & {
  /** Custom class name */
  className?: string;
  /** Content */
  children?: ReactNode;
};
type BreadcrumbsSeparatorProps = BoxProps & {
  /** Custom class name */
  className?: string;
  /** Content */
  children?: ReactNode;
  /** Alternative way to provide content */
  content?: ReactNode;
};
//#endregion
export { BreadcrumbsItemProps, BreadcrumbsProps, BreadcrumbsSeparatorProps };

//# sourceMappingURL=breadcrumbs.types.d.ts.map