import { FetchSchemasResponse, Schema, SchemaDefinition, ObjectDefinition, CreateObjectsResponse } from '../types/Schemas.js'; import { HubSpotPromise } from '../types/Http.js'; export declare function batchCreateObjects(accountId: number, objectTypeId: string, objects: ObjectDefinition): HubSpotPromise; export declare function createObjectSchema(accountId: number, schema: SchemaDefinition): HubSpotPromise; export declare function updateObjectSchema(accountId: number, schemaObjectType: string, schema: SchemaDefinition): HubSpotPromise; export declare function fetchObjectSchema(accountId: number, schemaObjectType: string): HubSpotPromise; export declare function fetchObjectSchemas(accountId: number): HubSpotPromise; export declare function deleteObjectSchema(accountId: number, schemaObjectType: string): HubSpotPromise;