import { BaseTestConfig } from '../../tests/test-framework';
import { IPktProgressbar } from './progressbar';
export interface ProgressbarTestConfig extends Partial<IPktProgressbar>, BaseTestConfig {
}
export declare const createProgressbarTest: (config?: ProgressbarTestConfig) => Promise<{
    container: HTMLElement;
    progressbar: import('./progressbar').PktProgressbar;
}>;
