import { Ref } from 'vue'; import { PromiseOr } from '@myparcel/ts-utils'; export type WithLoadingProperties = Ref> = T & { load(): PromiseOr; loading: Loading; }; export declare const addLoadingProperties: = Ref>(object: T, load: () => PromiseOr, loading: Loading) => WithLoadingProperties;