/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ export declare const shortcutIconLink = ""; export declare function getApiSchema(): { openapi: string; info: { version: string; title: string; description: string; }; tags: { name: string; }[]; paths: any; components: { parameters: { id: { name: string; in: string; description: string; required: boolean; schema: { type: string; }; style: string; }; }; }; };