import { Options } from "./Options.js";
export default class AttributeValues {
    readonly options: Options;
    readonly bodyClassName: string;
    readonly modalClassName: string;
    readonly backButtonClassName: string;
    readonly clearButtonClassName: string;
    readonly buttonClassName: string;
    readonly iconClassName: string;
    readonly iconCancelClassName: string;
    readonly iconBackClassName: string;
    readonly iconClockClassName: string;
    readonly iconLocationClassName: string;
    readonly controlsContainerClassName: string;
    readonly controlsContainerItemClassName: string;
    readonly controlsContainerItem1ClassName: string;
    readonly controlsContainerItem2ClassName: string;
    readonly controlsContainerItem3ClassName: string;
    readonly suggestionListClassName: string;
    readonly suggestionListId: string;
    readonly suggestionContainerClassName: string;
    readonly suggestionContainerItemClassName: string;
    readonly suggestionContainerItem1ClassName: string;
    readonly suggestionContainerItem2ClassName: string;
    readonly suggestionContainerFocusedClassName: string;
    readonly suggestionHtmlClassName: string;
    readonly suggestionClassName: string;
    readonly id_prefix: string | undefined;
    readonly inputClassName: string;
    readonly historyContainerClassName: string;
    readonly historyContainerItemClassName: string;
    readonly historyContainerItem1ClassName: string;
    readonly historyContainerItem2ClassName: string;
    readonly historyContainerItem3ClassName: string;
    readonly historyContainerFocusedClassName: string;
    readonly historyHtmlClassName: string;
    readonly historyListId: string;
    readonly historyListClassName: string;
    readonly histroyIconClockClassName: string;
    readonly histroyIconCancelClassName: string;
    readonly historyClearButtonClassName: string;
    constructor(options: Options, index: number);
    getSuggestionId(index: number): string;
}
