import babel from '@babel/core';
export default function jotaiPreset(): {
    plugins: babel.PluginItem[];
};
declare type Awaited<T> = T extends Promise<infer V> ? V : T;