import { Type } from '@angular/core'; import { ApplicationConfig } from '@angular/platform-browser'; import { DecoratorFunction, StoryContext } from 'storybook/internal/types'; import { ICollection, NgModuleMetadata, AngularRenderer } from './types'; export declare const moduleMetadata: (metadata: Partial) => DecoratorFunction; /** * Decorator to set the config options which are available during the application bootstrap operation */ export declare function applicationConfig( /** * Set of config options available during the application bootstrap operation. */ config: ApplicationConfig): DecoratorFunction; export declare const componentWrapperDecorator: (element: Type | ((story: string) => string), props?: ICollection | ((storyContext: StoryContext) => ICollection)) => DecoratorFunction;