import { ListTypes } from './common'; import { List } from './typings'; export interface CreateListOptions { types?: Partial; } export declare function createList(options?: CreateListOptions): List;