import { VariantProps } from "class-variance-authority"; import { type PropListSize } from "./PropListContext"; declare const propListItemLeadingCva: (props?: ({ variant?: "accent" | "default" | "on-dark" | null | undefined; framed?: boolean | null | undefined; disabled?: boolean | null | undefined; size?: "large" | "small" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type PropListItemProps = Readonly<{ children: React.ReactNode; icon?: React.ComponentType> | null; /** Inherited from the parent `PropList` when omitted. */ size?: PropListSize; /** Wraps the leading in a capsule. */ framed?: boolean; disabled?: boolean; } & Pick, "variant">> & Omit, "children">; export declare const PropListItem: ({ children, icon, size: sizeProp, variant, framed, disabled, className, ...rest }: PropListItemProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=PropListItem.d.ts.map