/** * @file * * No-op functions. */ /** * No-op function. */ export declare function noop(): void; /** * No-op async function. * * @returns A promise that resolves when the function is complete. */ export declare function noopAsync(): Promise;