import React from 'react'; export default function twoInput(props: IProps): React.JSX.Element; export interface IProps { color: string; max: number; mix?: number; min?: number; index?: number; theme?: string; fillType?: string; isPure?: boolean; change?: Function; status?: string; length?: number; }