import { type EventKey } from '../analytics/generated/analytics.types'; import type createEventPayload from '../analytics/generated/create-event-payload'; import { type AqlValidateResponse, type FetchObjectSchemasResponse } from '../types/assets/types'; type AnalyticsFireEvent = (...params: Parameters>) => void; export declare const getWorkspaceId: (fireEvent?: AnalyticsFireEvent) => Promise; export declare const validateAql: (workspaceId: string, data: { qlQuery: string; }, fireEvent?: AnalyticsFireEvent) => Promise; export declare const fetchObjectSchema: (workspaceId: string, schemaId: string, fireEvent?: AnalyticsFireEvent) => Promise; export declare const fetchObjectSchemas: (workspaceId: string, query?: string, fireEvent?: AnalyticsFireEvent) => Promise; export {};