export type IListItem = [string, string | undefined];
export type IList = IListItem[];
export declare function renderList(items: IListItem[]): string;
