//#region preset-universal.d.ts /** * @fileoverview Universal Storybook Addon Preset (no React dependency) * * This preset is used when the addon is referenced via its `./universal` * subpath in the `addons` array of `.storybook/main.ts`: * * ```ts * addons: ['@github-ui/storybook-addon-performance-panel/universal'] * ``` * * It registers the same manager panel as the default preset, but pairs it * with the universal-only preview (no React.Profiler decorator). * * @see {@link ./preset.ts} - Default preset (includes React.Profiler) * @module preset-universal */ declare function managerEntries(entry?: string[]): string[]; //#endregion export { managerEntries };