import { TdColorPickerProps } from '../../type'; export interface FormatInput { key: string; type: 'input'; flex?: number; } export interface FormatInputNumber { key: string; min: number; max: number; type: 'inputNumber'; flex?: number; format?: Function; } export declare type FormatInputsConfig = { [propName in TdColorPickerProps['format']]?: Array; }; export declare const FORMAT_INPUT_CONFIG: FormatInputsConfig; export default FORMAT_INPUT_CONFIG;