import React from "react";
export interface Item {
    label: string;
    value: string;
}
export declare const Init: React.FC<{
    onInit: (cmd: string) => void;
}>;
