/**
 * 延迟多少米后执行剩余的逻辑
 */
declare function delay(ms?: number): Promise<unknown>;
/**
 * 异步地对 hel 说你好
 */
declare function helloAsync(): Promise<string>;

/**
 * 对 hel 说你好
 */
declare function hello(): string;

export { helloAsync as a, delay as d, hello as h };
