///
import type { ColorFieldColorPickerProps } from '../ColorField';
import type { CommonStudioLayoutConfigProps, WithEditorEvents, WithEditorState } from './types';
import type { StudioLayoutColorFieldConfig } from './types/StudioColorFieldSchema';
export interface StudioLayoutColorFieldConfigProps extends CommonStudioLayoutConfigProps {
}
export interface StudioColorFieldProps extends Omit, WithEditorEvents {
label?: React.ReactNode;
style?: React.CSSProperties;
readOnly?: boolean;
colorPickerProps?: ColorFieldColorPickerProps;
onChange?(props: {
value: string;
partial?: boolean;
} & WithEditorState): void;
}
export interface StudioColorFieldState extends Partial> {
}
export declare const StudioColorField: import("react").NamedExoticComponent;
export default StudioColorField;