/** * ## Get * @param {String} resource * @param {Object} options * @returns {Promise} */ declare function get(resource: string, options: any): Promise; declare namespace get { var async: boolean; var optimiseFilterCacheability: (_: string, options: any) => { options: any; parseResult(result: any): any; }; } export default get;