import type { GraphOptions } from '../spec';
/**
 * <zh/> 基于用户传入的配置，推断出最终的配置
 *
 * <en/> Infer the final configuration based on the configuration passed by the user
 * @param options - <zh/> 用户传入的配置 | <en/> Configuration passed by the user
 * @returns <zh/> 最终的配置 | <en/> Final configuration
 */
export declare function inferOptions(options: GraphOptions): GraphOptions;
