import { type ComponentPropsWithoutRef, type ReactNode } from "react"; export interface StaticListItemContentProps extends ComponentPropsWithoutRef<"div"> { /** * The content of Static List Item */ children?: ReactNode; } export declare const StaticListItemContent: import("react").ForwardRefExoticComponent>;