import { LitElement, nothing } from 'lit'; export type Frequency = 'Monthly' | 'OneTime'; export interface Product { product: { id: string; name: string; }; price_list: { amount: { unit: string; value: number; }; frequency: Frequency; }[]; } interface Labels { product: string; quantity: string; monthlyCharges: string; oneOffCharges: string; totalCharges: string; totalOneOffFee: string; totalMonthlyFee: string; genericError: string; } export declare class IxPricing extends LitElement { static get styles(): import("lit").CSSResult[]; labels: Labels; error: string; products: Product[]; private pricingData; willUpdate(): void; renderError(): import("lit-html").TemplateResult<1> | typeof nothing; renderRows(): typeof nothing | import("lit-html").TemplateResult<1>[]; render(): import("lit-html").TemplateResult<1> | typeof nothing; } export {};