import { Direction } from './Types/Direction';
import { TranslatableJsonSchema } from './Types/TranslatableJsonSchema';
declare const getGraphqlSchemaFromJsonSchema: ({ rootName, schema, direction }: {
    rootName: string;
    schema: TranslatableJsonSchema;
    direction?: Direction | undefined;
}) => {
    typeName: string;
    typeDefinitions: string[];
};
export { getGraphqlSchemaFromJsonSchema };
