/** * Trigger the download of requested JSON object as user defined file * @param json - optional JSON object that will be the content of downloaded file * @param filename - string to define the downloaded file name */ export declare function downloadJsonAsFile({ json, filename, }: { json?: object; filename: string; }): void;