import { LifecycleEnum, Lifecycle, NormalizedLazyValue } from './types'; type LogHandler = (message?: unknown, ...optionalParams: unknown[]) => void; export declare function applyLifecycleState(life: LifecycleEnum, lifecycle: Lifecycle, el?: HTMLElement): void; export declare function applyLoadingState(el: HTMLElement, value: NormalizedLazyValue): void; export declare function applyLoadedState(el: HTMLElement, lifecycle: Lifecycle): void; export declare function applyErrorState(el: HTMLElement, value: NormalizedLazyValue, logger: LogHandler): void; export declare function loadElementSource(el: HTMLElement, value: NormalizedLazyValue, logger: LogHandler): void; export {};