import { DatabaseManager } from '../../../../core/database/manager.js';
import '../../../../core/shared/types.js';

declare const validateProfile: (profile: string, options: any) => void;
declare const handleSession: (dbManager: DatabaseManager, profile: string, options: any) => Promise<string>;
declare const validateCredentials: (profile: string, options: any) => any;
declare const logProcessingInfo: (profile: string, filteredQuery: string, options: any) => void;

export { handleSession, logProcessingInfo, validateCredentials, validateProfile };
