interface Options { Component: React.ComponentType; name: string; stories: Record; withRenderElementWrapper?: boolean; } /** * Runs a snapshot test for each story in the provided options. * @param options - The options for the snapshot test. * @param options.Component - The component to render. * @param options.name - The name of the test suite. * @param options.stories - The stories to test. */ export declare function runStorybookSnapshot(options: Options): void; export {};