#!/usr/bin/env node
export type LimitedUserConfig = {
    input: string;
    output: string;
    client?: "@hey-api/client-fetch" | "@hey-api/client-axios";
    format?: "biome" | "prettier";
    lint?: "biome" | "eslint";
    noOperationId?: boolean;
    enums?: "javascript" | "typescript" | false;
    useDateType?: boolean;
    debug?: boolean;
    noSchemas?: boolean;
    schemaType?: "form" | "json";
    pageParam: string;
    nextPageParam: string;
    initialPageParam: string | number;
    omitInitialPageParam?: boolean;
};
