import { GraphQLConfig, LayoutVariant } from '@redocly/config'; import type { GraphQLInfo } from '../types/index.js'; export type PaginationType = 'none' | 'section' | 'item'; type WithRequired = T & { [P in K]-?: T[P]; }; type BaseRequired = WithRequired; export type GraphQLDocsSettings = Omit & { layout: LayoutVariant; info?: GraphQLInfo; }; export {};