declare global {
    namespace Cypress {
        interface InterceptStubsOptions {
            names?: string[];
            headers?: Record<string, any>;
        }
        interface Chainable {
            interceptStubs(options?: InterceptStubsOptions): Chainable<null>;
        }
    }
}
export declare function interceptStubs(options?: Cypress.InterceptStubsOptions): void;
