import { LitElement, TemplateResult, PropertyValueMap, CSSResult } from 'lit';
import type { TabWithItems } from '../poe.types.js';
import './poe-item';
/**
 * PoE stash tab
 */
export declare class PoeStashTabElement extends LitElement {
    #private;
    /** PoE API tab data https://www.pathofexile.com/developer/docs/reference#stashes-get */
    tab: TabWithItems;
    /** The state of search input for DivinationStashType */
    search_query_for_divination_stash: string;
    protected willUpdate(map: PropertyValueMap<this>): void;
    protected render(): TemplateResult;
    connectedCallback(): void;
    disconnectedCallback(): void;
    static styles: CSSResult;
}
declare global {
    interface HTMLElementTagNameMap {
        'poe-stash-tab': PoeStashTabElement;
    }
}
//# sourceMappingURL=poe-stash-tab.d.ts.map