import { type ComponentPropsWithoutRef, type ReactNode } from "react"; export interface StaticListProps extends ComponentPropsWithoutRef<"ul"> { /** * The list items to be rendered within the StaticList. */ children: ReactNode; } export declare const StaticList: import("react").ForwardRefExoticComponent>;