import { IdGenerator } from 'cucumber-messages';
import IGherkinOptions from './IGherkinOptions';
export default function gherkinOptions(options: IGherkinOptions): {
    defaultDialect?: string;
    includeSource?: boolean;
    includeGherkinDocument?: boolean;
    includePickles?: boolean;
    newId?: IdGenerator.NewId;
};
