import { FC, ComponentType } from 'react'; import { Document } from '@component-controls/core'; export interface MockContexProps { storyId?: string; component?: ComponentType; [key: string]: any; } export declare const MockContext: FC; export declare const makeDecorators: (storyId?: string, props?: Omit | undefined) => Document['decorators']; export declare const mockDecorators: Document['decorators'];