interface Noop {
    (...args: any[]): any;
}
/** @see https://foxact.skk.moe/noop */
declare const noop: Noop;

export { noop };
export type { Noop };
