import { MultiInstanceProductboardConfig, ProductboardInstanceConfig } from './types.js';
/**
 * Load configuration from file or environment variables
 */
export declare function loadConfig(): MultiInstanceProductboardConfig;
/**
 * Get instance configuration by name
 */
export declare function getInstance(config: MultiInstanceProductboardConfig, instanceName?: string): ProductboardInstanceConfig;
/**
 * Get workspace configuration
 */
export declare function getWorkspace(config: MultiInstanceProductboardConfig, workspaceId: string): {
    instance: string;
    workspaceId: string;
};
