export declare const mockOAuthResponse: {
    access_token: string;
    token_type: string;
    expires_in: number;
};
export declare const mockBugResponse: {
    bugs: {
        bug_id: string;
        headline: string;
        status: string;
        severity: string;
        last_modified_date: string;
        product: string;
        affected_releases: string[];
        fixed_releases: string[];
        description: string;
    }[];
    total_results: number;
};
export declare const mockSingleBugResponse: {
    bugs: {
        bug_id: string;
        headline: string;
        status: string;
        severity: string;
        last_modified_date: string;
        product: string;
        affected_releases: string[];
        fixed_releases: never[];
        description: string;
        known_affected_releases: string[];
        known_fixed_releases: never[];
        support_case_count: number;
        duplicate_of: string;
        conditions: string;
        workaround: string;
    }[];
    total_results: number;
};
export declare const mockEmptyResponse: {
    bugs: never[];
    total_results: number;
};
export declare const mockErrorResponse: {
    ErrorResponse: {
        APIError: {
            ErrorCode: string;
            ErrorDescription: string;
            SuggestedAction: string;
        }[];
    };
};
export declare const mockTimeoutError: Error;
export declare const mockAbortError: Error;
export declare const testCases: {
    get_bug_details: {
        valid: {
            bug_ids: string;
        };
        invalid: {
            bug_ids: string;
            too_many: string;
        };
    };
    search_bugs_by_keyword: {
        valid: {
            keyword: string;
            severity: string;
            status: string;
            modified_date: string;
            page_index: number;
        };
        invalid: {
            keyword: string;
            severity: string;
            status: string;
            modified_date: string;
        };
    };
    search_bugs_by_product_id: {
        valid: {
            base_pid: string;
            severity: string;
            status: string;
        };
        invalid: {
            base_pid: string;
            severity: string;
        };
    };
    search_bugs_by_product_and_release: {
        valid: {
            base_pid: string;
            software_releases: string;
        };
        invalid: {
            base_pid: string;
            software_releases: string;
        };
    };
    search_bugs_by_product_series_affected: {
        valid: {
            product_series: string;
            affected_releases: string;
        };
        invalid: {
            product_series: string;
            affected_releases: string;
        };
    };
    search_bugs_by_product_series_fixed: {
        valid: {
            product_series: string;
            fixed_releases: string;
        };
        invalid: {
            product_series: string;
            fixed_releases: string;
        };
    };
    search_bugs_by_product_name_affected: {
        valid: {
            product_name: string;
            affected_releases: string;
        };
        invalid: {
            product_name: string;
            affected_releases: string;
        };
    };
    search_bugs_by_product_name_fixed: {
        valid: {
            product_name: string;
            fixed_releases: string;
        };
        invalid: {
            product_name: string;
            fixed_releases: string;
        };
    };
};
//# sourceMappingURL=mockData.d.ts.map