import { Component } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface AvatarListInterfaceProps extends PropsInterface { } export declare class AvatarList extends Component { private max; constructor(props: any); state: { showAll: boolean; }; get count(): number; onClick: () => void; render(): JSX.Element; }