///
import { ColorPickerFormatChangeProps, ColorPickerFormatOption } from '../ColorPicker/ColorPickerBase';
import type { CommonStudioLayoutConfigProps, WithEditorEvents, WithEditorState } from './types';
import type { StudioLayoutColorPickerConfig } from './types/StudioColorPickerSchema';
export interface StudioLayoutColorPickerConfigProps extends CommonStudioLayoutConfigProps {
}
export interface StudioColorPickerProps extends Omit, WithEditorEvents {
style?: React.CSSProperties;
formats?: ColorPickerFormatOption[];
onChange?(props: {
value: string;
partial?: boolean;
} & WithEditorState): void;
onFormatChange?(props: ColorPickerFormatChangeProps & WithEditorState): string | undefined;
}
export interface StudioColorPickerState extends Partial> {
}
export declare const StudioColorPicker: import("react").NamedExoticComponent;
export default StudioColorPicker;