import React from "react"; interface SelectorProps { label?: string; action?: any[]; onSelect?: (value: any, state?: any) => void; className?: string; id?: any; name?: string; } export declare const Selector: React.FC; export {};