export declare class IHandle {
    protected handle: number;
    constructor(handle: number);
    exists(): boolean;
    get Handle(): number;
}
