import React from 'react'; declare type MaskType = { key: number | string; content: any; }; interface MaskProps { data: MaskType[]; min: number; max: number; vertical?: boolean; prefixCls?: string; onMouseDown?: (val: number) => void; reverse?: boolean; } declare const _default: React.NamedExoticComponent; export default _default;