export interface Credentials { password: string; user: string; } export interface CredentialStatus { activeSource: 'env' | 'none' | 'stored'; envConfigured: boolean; storedConfigured: boolean; storedPath: string; user?: string; } export declare function getCredentialsPath(): string; export declare function readStoredCredentials(): Credentials | null; export declare function saveStoredCredentials(user: string, password: string): string; export declare function clearStoredCredentials(): boolean; export declare function resolveCredentials(): { credentials: Credentials; source: 'env' | 'stored'; }; export declare function getCredentialStatus(): CredentialStatus;