import { GraphQLClient } from './graphql/client'; import { type UnversionedResourcesQueryResult, type UnversionedResourcesQueryVariables } from './graphql/generated/types'; import { type File, type Table } from './types'; export declare class MakeswiftGraphQLApiClient { readonly graphqlClient: GraphQLClient; constructor({ endpoint }: { endpoint: string; }); createTableRecord(tableId: string, columns: any): Promise; getUnversionedResources({ fileIds, tableIds, }: UnversionedResourcesQueryVariables): Promise; getFile(fileId: string): Promise; getTable(tableId: string): Promise; } //# sourceMappingURL=graphql-api-client.d.ts.map