1 | import { StoryId, StoryName, ComponentTitle } from '@storybook/csf';
|
2 | interface ParamsId {
|
3 | storyId: StoryId;
|
4 | }
|
5 | interface ParamsCombo {
|
6 | kind?: ComponentTitle;
|
7 | story?: StoryName;
|
8 | }
|
9 | export declare const navigate: (params: ParamsId | ParamsCombo) => void;
|
10 | export declare const hrefTo: (title: ComponentTitle, name: StoryName) => Promise<string>;
|
11 | export declare const linkTo: (idOrTitle: string, nameInput?: string | ((...args: any[]) => string)) => (...args: any[]) => void;
|
12 | export declare const withLinks: (...args: any) => any;
|
13 | export {};
|