export declare class AuthManager {
    private auth?;
    private apiKey?;
    constructor(apiKey?: string, projectId?: string);
    getAuthHeaders(): Promise<{
        [key: string]: string;
    }>;
    validateAuth(): Promise<boolean>;
}
//# sourceMappingURL=auth.d.ts.map