type Configuration = typeof config;
declare let config: {
    excludePadding: boolean;
    threshold: number;
};
declare const configure: (opts: Partial<Configuration>) => void;

declare global {
    namespace Cypress {
        interface Chainable {
            /**
             * cypress-layout-inspector utility to provide layout testing functionality
             *
             * Configure cypress-layout-inspector through Cypress object. Wraps `configure(config)`
             */
            configureLayoutInspector(config: Parameters<typeof configure>[0]): Chainable<void>;
        }
    }
}
