//#region src/compat/function/once.d.ts
declare function once<T extends (...args: any) => any>(func: T): T;
//#endregion
export { once };