import * as React from 'react'; import { AccessLevel } from '../../types'; export type FieldType = 'color' | 'number' | 'text'; export interface ThemeEditorProps { theme: string; accessLevel: AccessLevel; } export declare const ThemeEditor: React.FunctionComponent;