export type constant = { literal: string; value: number; deprecated?: boolean; kind: 0 | 1; }; export declare function isConstant(obj: any): obj is constant; export type nestedData = { [key: string]: constant | nestedData; };