import { AsyncHandler } from './AsyncHandler'; /** * A handler that always resolves and always returns the stored value. * Will return undefined if no value is stored. */ export declare class StaticHandler extends AsyncHandler { protected readonly value?: T; constructor(value?: T); handle(): Promise; }