export interface HyperAgentDebugOptions {
    cdpSessions?: boolean;
    traceWait?: boolean;
    profileDomCapture?: boolean;
    structuredSchema?: boolean;
}
export declare function setDebugOptions(options?: HyperAgentDebugOptions, enabled?: boolean): void;
export declare function getDebugOptions(): HyperAgentDebugOptions & {
    enabled: boolean;
};
