/// import type { ListContext } from '..'; import type { HTMLProps } from '../../utils'; type BaseProps = HTMLProps['li']; export type ListProps = BaseProps & ListContext; export declare const ListItem: import("react").ForwardRefExoticComponent<{ [index: `data-${string}`]: unknown; as?: any; css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined; className?: string | undefined; children?: import("react").ReactNode; } & import("react").LiHTMLAttributes & ListContext & import("react").RefAttributes>; export {};