import React from 'react'; import { MarginProps } from 'styled-system'; import { Status } from '../helpers/status'; import { FlexItemProps, SizingProps } from '../helpers/styled'; declare type InvalidProps = 'type' | 'height' | 'width' | 'list' | 'placeholder' | 'readOnly' | 'required'; interface InputProps extends Omit, InvalidProps> { showValue?: 'focus' | 'hover' | boolean; status?: Status; } export declare type RangeProps = InputProps & MarginProps & SizingProps & FlexItemProps; export declare const Range: import("styled-components").StyledComponent>, import("@repay/cactus-theme").CactusTheme, MarginProps>> & import("styled-system").WidthProps>, import("csstype").Property.Width> & import("styled-system").MinWidthProps>, import("csstype").Property.MinWidth> & import("styled-system").MaxWidthProps>, import("csstype").Property.MaxWidth> & import("styled-system").HeightProps>, import("csstype").Property.Height> & import("styled-system").MinHeightProps>, import("csstype").Property.MinHeight> & import("styled-system").MaxHeightProps>, import("csstype").Property.MaxHeight> & FlexItemProps, never>; export default Range;