import { JSONSchemaLoaderOptions } from '@omnigraph/json-schema';
export interface OpenAPILoaderOptions extends Partial<JSONSchemaLoaderOptions> {
    oasFilePath: string;
    selectQueryOrMutationField?: OpenAPILoaderSelectQueryOrMutationFieldConfig[];
    fallbackFormat?: 'json' | 'yaml' | 'js' | 'ts';
}
export interface OpenAPILoaderSelectQueryOrMutationFieldConfig {
    type: 'query' | 'mutation';
    fieldName: string;
}
