import { NamedFunction1 } from './_Base';
export declare class sleep extends NamedFunction1<[number]> {
    static type(): string;
    async: boolean;
    func(delay: number): Promise<void>;
}
