export declare class Checker {
    static throwIfAnyNotPresent(values: Object, propertyNames: string[]): void;
    static throwIfNotPresent(value: any, name: string): void;
    static present(value: any): boolean;
}
