import { ObservableMap } from '@stencil/store';
import { VAT_TYPE } from "../../../utils/enums";
import { StickyFooterEnhancedStoreState } from '../sl-sticky-footer-enhanced-store';
export declare class SlStickyFooterModalAmounts {
    el: HTMLSlStickyFooterModalAmountsElement;
    /** Amount to be displayed on the left side (monthly) */
    amountLeft?: string | number;
    /** Amount to be displayed on the right side (one-time) */
    amountRight?: string | number;
    /** VAT display type for the left amount: include, exclude, or hidden */
    vatTypeLeft?: VAT_TYPE | `${VAT_TYPE}`;
    /** VAT display type for the right amount: include, exclude, or hidden */
    vatTypeRight?: VAT_TYPE | `${VAT_TYPE}`;
    store: ObservableMap<StickyFooterEnhancedStoreState>;
    constructor();
    private renderAmountSection;
    render(): any;
}
