export interface Callable {
    arity: number;
    call(args: any[]): any;
}
export declare function isCallable(obj: any): obj is Callable;
