import { Client, Suggestion } from 'getaddress-api';
import AttributeValues from "./AttributeValues.js";
import Modal from "./Modal.js";
export default class SuggestionContainer {
    readonly client: Client;
    readonly modal: Modal;
    readonly suggestion: Suggestion;
    readonly attributeValues: AttributeValues;
    private readonly container;
    element: HTMLElement;
    constructor(client: Client, modal: Modal, suggestion: Suggestion, attributeValues: AttributeValues);
    private build;
    private handleClick;
    destroy: () => void;
}
