import React from 'react'; import '../g.scss'; import 'zl-color-pick/dist/zl-color-pick.css'; declare function LabelColorPick(props: IColorPick): React.JSX.Element; export default LabelColorPick; export interface IColorPick { title: string; attrKey: string; value: IGradient | string; size?: string; change?: Function; paddingSize?: string; wrapStyle?: React.CSSProperties; theme?: string; fillType?: string; isPure?: boolean; isShowReset?: boolean; } export interface IGradient { fillType?: string; color?: string[]; angle?: number; position?: number; current?: 0; colorGroups?: string[]; }