export type MetroConfig = {
    projectRoot?: string;
    transformerPath?: string;
    transformer?: {
        minifierPath?: string;
        assetPlugins?: string[];
        babelTransformerPath?: string;
    };
    resolver?: {
        platforms?: string[];
        sourceExts?: string[];
    };
};
