import { CourierBaseElement } from '@trycourier/courier-ui-core';
import { CourierInboxTheme } from '../types/courier-inbox-theme';
export declare class CourierInboxPaginationListItem extends CourierBaseElement {
    static get id(): string;
    private _theme;
    private _style?;
    private _skeletonLoadingList?;
    private _observer?;
    private _customItem?;
    private _onPaginationTrigger;
    constructor(props: {
        theme: CourierInboxTheme;
        customItem?: HTMLElement;
        onPaginationTrigger: () => void;
    });
    onComponentMounted(): void;
    onComponentUnmounted(): void;
    static getStyles(_theme: CourierInboxTheme): string;
}
