import { ResourcesConfig } from './singleton/types'; /** * Converts the object imported from `aws-exports.js` or `amplifyconfiguration.json` files generated by * the Amplify CLI into an object that conforms to the {@link ResourcesConfig}. * * @param config A configuration object imported from `aws-exports.js` or `amplifyconfiguration.json`. * * @returns An object that conforms to the {@link ResourcesConfig} . */ export declare const parseAWSExports: (config?: Record) => ResourcesConfig;