import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ListVariant } from "../../interfaces/enum/ListVariant"; import { ListComponent } from "../../interfaces/enum/ListComponent"; import { ListInterface } from "../../interfaces/interfaces/ListInterface"; export interface ListInterfaceProps extends PropsInterface { variant?: ListVariant; component?: ListComponent; list?: ListInterface[]; } export declare class List extends PureComponent { constructor(props: any); generate(): {}; render(): JSX.Element; }