/// <reference types="node" />
/// <reference types="webpack-env" />
export declare function storiesOf(name: string, module: NodeModule): ExportableStory;
export declare class ExportableStory {
    kind: string;
    parameters?: Record<string, any>;
    decorators?: Function[];
    stories?: Record<string, Function>;
    storiesParameters?: Record<string, Record<string, any>>;
    constructor(kind: string);
    addParameters(parameters: any): this;
    addDecorator(decorator: any): this;
    add(storyName: any, callback: any, parameters?: any): this;
}
//# sourceMappingURL=storiesOf.d.ts.map