import { LitElement, TemplateResult, CSSResult } from 'lit';
import type { PoeItem } from '../../poe.types.js';
import './poe-item-info-content.js';
import './poe-item-info-header.js';
import '../divination-card/poe-divination-card.js';
export declare class PoeItemInfoElement extends LitElement {
    /** PoE API item data https://www.pathofexile.com/developer/docs/reference#stashes-get */
    item: PoeItem;
    protected render(): TemplateResult;
    static styles: CSSResult;
}
declare global {
    interface HTMLElementTagNameMap {
        'poe-item-info': PoeItemInfoElement;
    }
}
//# sourceMappingURL=poe-item-info.d.ts.map