import { FC, Context } from 'react'; import { StoryId } from '@storybook/api'; export declare type SourceItem = string; export declare type StorySources = Record; export interface SourceContextProps { sources: StorySources; setSource?: (id: StoryId, item: SourceItem) => void; } export declare const SourceContext: Context; export declare const SourceContainer: FC<{}>;