import React from 'react'; import { TypographyProps } from '@mui/material/Typography'; import { SxProps } from '@mui/material/styles'; export interface ListItemLinkProps { icon?: React.ReactNode; primary: string | React.ReactNode; secondary?: string | React.ReactNode; to: string; dense?: boolean; disableNavLink?: boolean; exact?: boolean; style?: React.CSSProperties; onClick?: (event: React.MouseEvent) => void; classes?: { listItem?: string; listItemText?: string; }; primaryTypographyProps?: TypographyProps<'span'>; secondaryTypographyProps?: TypographyProps<'p', { component?: 'p'; }>; sx?: SxProps; } export declare function ListItemLink({ icon, to, onClick, disableNavLink, dense, style, classes, children, exact, primary, secondary, primaryTypographyProps, secondaryTypographyProps, sx, }: React.PropsWithChildren): React.ReactElement; export interface LinkListProps { label?: string; dense?: boolean; disablePadding?: boolean; style?: React.CSSProperties; sx?: SxProps; } export declare const LinkList: React.ComponentType>;