import { Constructor } from '@mtna/core-ts'; /** @docs-private */ export interface CanLoad { /** Whether the component is loading. */ loading: boolean; } /** @docs-private */ export declare type CanLoadCtor = Constructor; /** Mixin to augment a directive with a `loading` property. */ export declare function mixinLoading>(base: T): CanLoadCtor & T;