import React from "react";
import "fake-indexeddb/auto";
export interface KeysProps {
    keys: string[];
    selectedKey: string;
    onSelect: (key: string) => void;
    onClear: (key: string) => void;
    onRevalidate: (key: string) => void;
    theme: string;
    children?: React.ReactNode;
    panelWidth?: number;
}
