import { PluginOptions } from "puppeteer-extra-plugin";
import { z } from "zod";
import { LumResponseSchema } from "./schemas";
export declare type BrowserId = string;
export declare type LumResponse = z.infer<typeof LumResponseSchema>;
export interface TrackedTimezone {
    ip: string;
    tz: string;
    ctx?: LumResponse;
}
export interface TimezonePluginOptions extends PluginOptions {
    fallbackTz?: string | string[];
}
