#!/usr/bin/env node
/**
 * Entry point for the GraphQL Markdown CLI.
 * Loads configuration from graphql-config and sets up command-line interface.
 * @module
 */
import type { GraphQLExtensionDeclaration } from "@graphql-markdown/types";
/**
 * Name of the GraphQL Markdown extension for graphql-config
 */
export declare const EXTENSION_NAME: "graphql-markdown";
/**
 * GraphQL config extension declaration for GraphQL Markdown
 * @returns Extension configuration object
 */
export declare const graphQLConfigExtension: GraphQLExtensionDeclaration;
