import 'babel-types'; declare module 'babel-types' { interface StringLiteralTypeAnnotation { value: string; } interface ObjectTypeAnnotation { exact: boolean; } interface ObjectTypeProperty { variance?: { kind: 'plus' | 'minus'; }; optional: boolean; } }