import { CSSResult, LitElement } from 'lit';
export declare class BackedCampaignListItem extends LitElement {
    static styles: CSSResult[];
    currencySymbols?: any;
    campaign?: any;
    pledges?: any;
    apiFull?: string;
    openStatus: boolean | undefined;
    addCurrencySymbols: (amount: string) => string;
    showPledges: () => Promise<void>;
    render(): import("lit-html").TemplateResult<1>;
}
