import { type SchemaInterface } from "../lib/base";
export type ConstTypes = string | number | boolean | object | null;
export interface OpenApiConst extends Omit<SchemaInterface<ConstTypes>, "addEnums"> {
}
export declare const Const: (constant: ConstTypes) => OpenApiConst;
