export * from './JestToGherkin';
/**
 * Read from the given path of Jest testing code and compose Gherkin source code.
 * @param options {{pathTestsInput: string}}: String path to the TypeScript testing code in Jest
 * @returns Composed Gherkin source code.
 */
export declare function compose(options: {
    pathTestsInput: string;
}): string;
/**
 *
 * @param options {{pathTestsInput: string}}: String path to the TypeScript testing code in Jest
 * @returns
 */
export declare function generateComments(options: {
    pathTestsInput: string;
}): string;
