import { type ComponentCacheHelper } from '../helpers/ComponentCacheHelper.js'; /** * Use the component cache helper to dynamically set cacheability of * components. * * This composable can only be used in components that are rendered inside * . * * If this is not the case, the callback is never called and the composable * has no effect. */ export declare function useComponentCache(cb: (helper: ComponentCacheHelper) => void): void;