import type { InstanceOptions, IOContext, MasterData, ParsedLocator } from '@vtex/api'; export declare type BuildSchemaServiceConstructorParams = { app: ParsedLocator; context: IOContext; masterdataClient: MasterData; dataEntityName: string; schemaBuilderVersion: number; options?: InstanceOptions; }; export declare function buildSchemaService({ app, context, masterdataClient, dataEntityName, schemaBuilderVersion, }: BuildSchemaServiceConstructorParams): () => string | Promise;