import { Empty, EmptyArgs } from './Empty';
import { Equal } from './Equal';
export declare class Objects {
    static isEmpty: typeof Empty.isEmpty;
    static isEmptyArgs: typeof Empty.isEmptyArgs;
    static ofEmptyArgs: (args: Object) => EmptyArgs;
    static equals: typeof Equal.isEqual;
    static ofNullable: typeof Empty.ofNullable;
    static notEmpty: (value: any, strict?: boolean) => boolean;
}
