export declare const DEFAULT_LIST_LENGTH = 10; export declare type DynamicListOptions = { heading?: boolean; emptyList?: boolean; titleTextContent?: boolean; invalidCount?: number; }; export declare type DynamicListItemOptions = { title?: boolean; titleTextContent?: boolean; link?: boolean; linkHref?: boolean; score?: boolean; scorePercentage?: boolean; }; export declare const generateDynamicListItem: ({ title, titleTextContent, link, linkHref, score, scorePercentage }?: Readonly) => HTMLDivElement; export declare const generateDynamicList: ({ heading, emptyList, titleTextContent, invalidCount }?: Readonly) => HTMLDivElement;