export interface ActionParam { name: string; typeString: string; mockValue: string; } export interface StoreProperty { key: string; isAction: boolean; typeString: string; mockValue: string; actionParams?: ActionParam[]; } export interface ParseResult { storeName: string; properties: StoreProperty[]; } export declare function parseStore(filePath: string, ignoredWrappers?: string[]): ParseResult;