declare module "get-typed" { type _Options = { plugins?: Array, _reason?: boolean, }; var Options: _Options; type Node = { type: string, [key: string]: any, }; type Result = { resolved: typeof Node, printed: { flow: string, typescript: string, reason: string, json: typeof Node, }, }; export default function(entry: string, opts: typeof Options): Promise; }