import { NgModuleMetadata, ICollection } from './dist/client/preview/angular/types'; export interface IStorybookStory { name: string; render: () => any; } export interface IStoribookSection { kind: string; stories: IStorybookStory[]; } export type IGetStory = () => { props?: ICollection; moduleMetadata?: Partial; component?: any; template?: string; }; export interface IApi { kind: string; addDecorator: (decorator: any) => IApi; add: (storyName: string, getStory: IGetStory) => IApi; } declare module '@storybook/angular' { export function storiesOf(kind: string, module: NodeModule): IApi; export function setAddon(addon: any): void; export function addDecorator(decorator: any): IApi; export function configure(loaders: () => NodeRequire, module: NodeModule): void; export function getStorybook(): IStoribookSection[]; }