/** * Returns true if the file path is a valid bundle-able file extension. This is used to filter exports maps out * to ensure we prevent trying to bundle things that bundlers don't support. We can bundle things like TS, * JS, CSS, SCSS, JSON, and even text extensions like .txt and .html. These formats all will produce javascript * modules. "Valid" is defined by what the bundler abstraction expects. In the future we may want this code to be * provided by the plugin itself so that it owns what's "supported". */ export declare function isValidBundleEntry(filePath: string): boolean; //# sourceMappingURL=isValidBundleEntry.d.ts.map