import { MaterialComponent } from '@preact-material-components/base/lib/MaterialComponent'; import { SoftMerge } from '@preact-material-components/base/lib/types'; export interface IListItemLinkProps { activated?: boolean; selected?: boolean; } export interface IListItemLinkState { } export declare class ListItemLink extends MaterialComponent, StateTypes & IListItemLinkState> { protected componentName: string; protected mdcProps: string[]; protected materialDom(props: any): JSX.Element; }