export interface ConfigPaths {
    configDir: string;
    dataDir: string;
    toolsDir: string;
    agentsDir: string;
    tasksDir: string;
    logsDir: string;
}
/**
 * Get configuration paths following XDG Base Directory Specification
 * @see https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
 */
export declare function getConfigPaths(): ConfigPaths;
/**
 * Create all required configuration directories
 * @throws {Error} If directory creation fails
 */
export declare function createConfigDirectories(): void;
