import type { StoryFn } from '@storybook/react'; import type { TestingStory } from './types'; export declare const globalRender: StoryFn; export declare const isInvalidStory: (story?: any) => boolean; declare type Entries = { [K in keyof T]: [K, T[K]]; }[keyof T]; export declare function objectEntries(t: T): Entries[]; export declare const getStoryName: (story: TestingStory) => string | undefined; export {};