export declare function sleep(seconds: number): Promise; export declare function createLogger(name: string): { info: (...args: any[]) => void; error: (...args: any[]) => void; warning: (...args: any[]) => void; debug: (...args: any[]) => void; }; /** * Checks if an error is related to API authentication * * @param error - The error to check * @returns boolean indicating if it's an authentication error */ export declare function isAuthenticationError(error: unknown): boolean; export declare const getBuildDomTreeScript: () => string; //# sourceMappingURL=utils.d.ts.map