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