import { Destroyable } from 'dojo-interfaces/bases'; import { ComposeFactory } from '../compose'; export interface DestroyableFactory extends ComposeFactory { } /** * A type guard that determines if the value is a Destroyable * * @param value The value to guard for */ export declare function isDestroyable(value: any): value is Destroyable; /** * A mixin which adds the concepts of being able to *destroy* handles which the instance * *owns* */ declare const createDestroyable: DestroyableFactory; export default createDestroyable;