import { TextStyleCollection } from '@repay/cactus-theme'; import React from 'react'; import { MarginProps, WidthProps } from 'styled-system'; import { StatusProps } from '../helpers/status'; declare type TextStyleKey = keyof TextStyleCollection; export declare const textStyles: (keyof TextStyleCollection)[]; declare type InputElementProps = Omit, 'width'>; export interface TextInputProps extends InputElementProps, StatusProps, MarginProps, WidthProps { textStyle?: TextStyleKey; } export declare const commonInputStyles: import("styled-components").FlattenInterpolation>; export declare const TextInput: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>; export default TextInput;