interface SavedScript { code: string; savedAt: number; } type ScriptLibrary = Record; interface Props { library: ScriptLibrary; currentName: string | null; onLoad(name: string): void; onDelete(name: string): void; onClose(): void; } export declare function ScriptLibraryModal({ library, currentName, onLoad, onDelete, onClose }: Props): import("react").JSX.Element; export {};