/**
 * Copyright 2020 Google Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * A debug function that can be used in any environment.
 *
 * @remarks
 *
 * If used in Node, it falls back to the
 * {@link https://www.npmjs.com/package/debug | debug module}. In the browser it
 * uses `console.log`.
 *
 * @param prefix - this will be prefixed to each log.
 * @returns a function that can be called to log to that debug channel.
 *
 * In Node, use the `DEBUG` environment variable to control logging:
 *
 * ```
 * DEBUG=* // logs all channels
 * DEBUG=foo // logs the `foo` channel
 * DEBUG=foo* // logs any channels starting with `foo`
 * ```
 *
 * In the browser, set `window.__PUPPETEER_DEBUG` to a string:
 *
 * ```
 * window.__PUPPETEER_DEBUG='*'; // logs all channels
 * window.__PUPPETEER_DEBUG='foo'; // logs the `foo` channel
 * window.__PUPPETEER_DEBUG='foo*'; // logs any channels starting with `foo`
 * ```
 *
 * @example
 * ```
 * const log = debug('Page');
 *
 * log('new page created')
 * // logs "Page: new page created"
 * ```
 */
export declare const debug: (prefix: string) => (...args: unknown[]) => void;

// denoCacheMetadata={"headers":{"access-control-allow-origin":"*","via":"1.1 720129ba4056e60029189758c6f0de0c.cloudfront.net (CloudFront),HTTP/2 ord.vultr.prod.deno-cluster.net","x-amz-cf-pop":"ORD56-P16","x-deno-trace-id":"2ab83763a8e0758723b9de5d2f8dafd2","content-security-policy":"default-src 'none'; style-src 'unsafe-inline'; sandbox","x-amz-replication-status":"COMPLETED","x-amz-cf-id":"-_66CPxUfTTKz6ZZ9-74ZE3kiJKNChpnFAa4Bh4su7CXhEYKlRTOuw==","content-length":"1667","vary":"Accept-Encoding, Origin","server-timing":"fetchSource;dur=15","accept-ranges":"bytes","cross-origin-opener-policy":"same-origin","alt-svc":"h3=\":443\"; ma=86400","content-type":"application/typescript; charset=utf-8","referrer-policy":"strict-origin-when-cross-origin","date":"Mon, 05 Jan 2026 20:32:40 GMT","strict-transport-security":"max-age=63072000; includeSubDomains; preload","server":"AmazonS3,deployd","x-frame-options":"DENY","cache-control":"public, max-age=31536000, immutable","age":"955028","etag":"\"0f5561f9a71f8ea44eb0399499dc257d\"","x-content-type-options":"nosniff","x-cache":"Hit from cloudfront","cross-origin-resource-policy":"same-origin","last-modified":"Wed, 29 Sep 2021 16:18:57 GMT","cache-status":"deno; hit","x-amz-version-id":"ozvugYWrXrnNEpUeZK4Fw0or5Rq72t3U","cross-origin-embedder-policy":"same-origin"},"url":"https://deno.land/x/puppeteer@9.0.2/vendor/puppeteer-core/puppeteer/common/Debug.d.ts","time":1768600188}