/**
 * Custom Jest matchers for CLI integration tests.
 */
declare global {
    namespace jest {
        interface Matchers<R> {
            /**
             * Assert that the line following a matching line matches the expected pattern.
             */
            toHaveNextLineMatching(linePattern: string | RegExp, expected: string | RegExp): R;
        }
    }
}
export {};
