import { C8yClient } from "../../shared/c8yclient";
declare global {
    interface ChainableWithState {
        state(state: "window"): Cypress.AUTWindow;
        state(state: "c8yclient"): C8yClient | undefined;
        state(state: "c8yclient", value: C8yClient | undefined): void;
    }
    namespace Cypress {
        interface Cypress {
            errorMessages: any;
        }
        interface LogConfig {
            renderProps(): ObjectLike;
        }
    }
}
