import React from 'react'; interface ControllerProps { code?: string; support_alpha?: boolean; onCodeChange(code: string): void; hueOnly?: boolean; zIndex?: number; } export declare const Controller: React.FC; export {};