import type { AuthProvider } from '@mondaydotcomorg/atp-protocol'; /** * Environment variable based auth provider * Simple provider that reads credentials from process.env * Good for development and simple deployments */ export declare class EnvAuthProvider implements AuthProvider { name: string; private prefix; private credentials; constructor(options?: { prefix?: string; credentials?: Record; }); getCredential(key: string): Promise; setCredential(key: string, value: string, _ttl?: number): Promise; deleteCredential(key: string): Promise; listCredentials(): Promise; disconnect(): Promise; } //# sourceMappingURL=env.d.ts.map