UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

11 lines (10 loc) 327 B
import React from 'react'; interface UploadDialogProps { setUploadFiles: (value: boolean) => void; setCode: React.Dispatch<React.SetStateAction<{ code: string; format: string; }>>; } export declare function UploadDialog(props: UploadDialogProps): import("react/jsx-runtime").JSX.Element; export {};