import React from 'react'; interface optionsType { name?: string; id: string; value?: number; } export interface SliderType { value: optionsType[]; options: optionsType[]; onChange: (value: optionsType[]) => void; disabled: boolean; allowHalf?: boolean; style?: any; textStyle?: any; allowClear?: boolean; } declare function ApaasRate(props: Partial): React.ReactElement; export default ApaasRate;