/** * Throws a warning message informing that a deprecated method is being used and * what should be used instead. * * @param packageInfo - Info of the package where the deprecated method is being used. Recommended * to use `packageName@packageVersion` from package.json (for example * "\@farfetch/blackout-redux\@1.0.0"). * @param deprecatedMethod - Name of the deprecated method. * @param newMethod - Name of the method to use instead of the deprecated one. */ declare const warnDeprecatedMethod: (packageInfo: string, deprecatedMethod: string, newMethod?: string) => void; export default warnDeprecatedMethod;