import type { ComponentPropsWithoutRef, FC } from "react"; import { type TextColor, type TextStyle } from "../Text/Text"; type Props = ComponentPropsWithoutRef<"ul"> & { /** * The styling variant of the text. * * @default "base" */ variant?: TextStyle; /** * @default "base" */ color?: TextColor; /** * The position of the list marker. * * @default "inside" */ position?: "inside" | "outside"; listVariant?: "unordered" | "ordered" /** * If a styled list would be used inside another, this * creates a specific padding (m - 16px) on the list and uses the * `list-circle` style on it. */ | "unordered-nested"; }; type StaticComponents = { Item: typeof Item; }; export declare const StyledBaseList: FC & StaticComponents; declare const Item: FC>; export {};