import classNames from 'classnames'; import { IStoryOptionComponentOwnProps, } from '../../src/storyOptions/IStoryOptionComponentOwnProps'; import { IStoryOption, } from '../../src/storyOptions/IStoryOption'; import { SoundManagerAudioPanel, } from '../../src/components/SoundManagerAudioPanel'; import { StoryOptionsList, } from '../../src/components/StoryOptionsList'; import * as React from 'react'; import styles from './sound-manager.less'; const Option: React.FunctionComponent< IStoryOptionComponentOwnProps > = ({ getBreadcrumbProps, open, treeSelector, visibilityTree, }) => ( {[ ]} ); const option: IStoryOption = { content: Option, name: 'sound-manager-option', }; export default option;