import type { ComponentType } from 'react'; import type { ButtonComponentProps, TranslationsType } from './component'; export interface LoadMoreWithProgressBarExposedProps { translations?: TranslationsType; buttonComponent?: ComponentType; className?: string; } export declare const LoadMoreWithProgressBar: ComponentType;