```ts // MyComponent.stories.ts|tsx import type { Meta, StoryObj } from '@storybook/react'; import { useChannel } from '@storybook/preview-api'; import { HIGHLIGHT } from '@storybook/addon-highlight'; import { MyComponent } from './MyComponent'; const meta: Meta = { component: MyComponent, }; export default meta; type Story = StoryObj; export const StyledHighlight: Story = { decorators: [ (storyFn) => { const emit = useChannel({}); emit(HIGHLIGHT, { elements: ['h2', 'a', '.storybook-button'], color: 'blue', style: 'double', // 'dotted' | 'dashed' | 'solid' | 'double' }); return storyFn(); }, ], }; ```