import { ObjectLiteralExpression, SourceFile } from 'ts-morph';
export interface CoerceStoriesOptions {
    componentName: string;
    feature?: string | null;
    moduleMetadata?: (moduleDecoratorObject: ObjectLiteralExpression) => void;
    parentTitle?: string;
}
export declare function CoerceStories(sourceFile: SourceFile, options: CoerceStoriesOptions): void;
