export declare const REGEX_HASH: RegExp;
export declare const NOCK_RECORD: boolean;
export declare function withArguments(data: any, { shouldThrow }?: {
    shouldThrow?: boolean | undefined;
}): (_: any, _2: string, descriptor: any) => void;
export declare function withMock({ query, reply, delay, }: {
    query?: {};
    reply?: any;
    delay?: {
        head?: number;
    };
}): (_: any, _2: string, descriptor: any) => void;
export declare function describeMethod(Klass: any): void;
export declare function describeApi(api: string, fn: () => void): void;
