import { ApiV3 } from '../lib/ApiV3'; import { FieldDefinition } from '../Types'; /** * Create a custom field on an ODP object * @param apiV3 the v3 API instance to use * @param object the ODP object to create the field on, e.g., `customers` * @param field the field to create * @throws {ApiFieldExistsError} if the field name already exists * @throws {HttpError} if it receives any other non-2XX result */ export declare function createField(apiV3: ApiV3.API, object: string, field: FieldDefinition): Promise>; //# sourceMappingURL=fields.d.ts.map