//#region src/cache/index.d.ts
interface Props {
name: string;
key: (...args: A) => string;
fn: (...args: A) => R;
condition?: (...args: A) => boolean;
}
declare function cache(_props: Props): void;
//#endregion
export { cache };
//# sourceMappingURL=index.d.mts.map