import { ElementType, ReactNode } from "react"; import { Size } from "../../types"; type ListViewLinkItemProps = { children: ReactNode; as?: ElementType; active: boolean; transparent: boolean; noPadding: boolean; align: "left" | "center"; size: Size; } | any; declare function ListViewLinkItem({ children, as: Component, active, transparent, noPadding, align, size, ...props }: ListViewLinkItemProps): JSX.Element; export default ListViewLinkItem;