/** * Official Type definitions for the LemonadeJS plugins * https://lemonadejs.net * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import Component from './index'; interface List { (): any [key: string]: any } interface Options extends Component.Options { ref: any; } declare function List(props: Options): any; export default List;