import { BaseTestConfig } from '../../tests/test-framework';
export interface AlertTestConfig extends BaseTestConfig {
    skin?: string;
    compact?: boolean;
    title?: string;
    date?: string;
    closeAlert?: boolean;
    ariaLive?: string;
}
export declare const createAlertTest: (config?: AlertTestConfig) => Promise<{
    container: HTMLElement;
    alert: import('./alert').PktAlert;
}>;
