import type React from "react"; import { type ColorProps, type SpaceProps, type TypographyProps } from "styled-system"; type Props = React.ComponentPropsWithRef<"li"> & SpaceProps & ColorProps & TypographyProps; declare const ListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLLIElement>, Props>> & string; export default ListItem;