import type { FC, ComponentProps } from "react"; import { StyledBaseList } from "./StyledBaseList"; type Props = Omit, "listVariant">; type StaticComponents = { Item: typeof StyledBaseList.Item; }; /** * A styled unordered list component that wraps its children with a base styled list. * * @remarks * This component is intended to be used for rendering unordered lists with consistent styling. * It accepts all props supported by `StyledBaseList` and passes them through. * * @example * Basic usage: * ```tsx * *
  • Item 1
  • *
  • Item 2
  • *
    * ``` * * @example * Nested lists: * ```tsx * *
  • * Parent Item * *
  • Nested Item 1
  • *
  • Nested Item 2
  • *
    * *
  • Another Parent Item
  • * * ``` * * @param children - The list items or nested lists to render within the unordered list. * @param listVariant - The variant of the list; defaults to "unordered". * @param rest - Additional props passed to the underlying `StyledBaseList`. */ export declare const StyledUnorderedList: FC & StaticComponents; export {};