import { ILazyParams, ILazyComponent } from './lazy'; export interface IDelayedParams extends ILazyParams { delay?: number; draf?: boolean; idle?: boolean; } export declare type TDelayed = (params: IDelayedParams) => ILazyComponent; export declare const delayed: TDelayed;