export declare type TimeOutType = 'script' | 'async' | 'page load' | 'implicit';
export interface ITimeOutTypeEnum {
    readonly SCRIPT: 'script';
    readonly ASYNC_SCRIPT: 'async';
    readonly PAGE_LOAD: 'page load';
    readonly IMPLICIT: 'implicit';
}
declare const _default: ITimeOutTypeEnum;
export default _default;
