import { GraphQLClient } from './graphql-client'; export interface ExportGraphQLMetaParams { /** GraphQL client configured for the meta/services API endpoint */ client: GraphQLClient; /** The database_id to filter by */ database_id: string; } export type ExportGraphQLMetaResult = Record; /** * Fetch metadata via GraphQL and generate SQL INSERT statements. * This is the GraphQL equivalent of exportMeta() in export-meta.ts. */ export declare const exportGraphQLMeta: ({ client, database_id }: ExportGraphQLMetaParams) => Promise;