import { IParserParseOutput } from '../parser';
export interface IGeneratorOutput extends IParserParseOutput {
    contents: {
        negative: string;
        positive: string;
    };
}
