import React, { RefObject } from 'react'; import { FormHandles } from '@unform/core'; interface Props { id?: string; formRef: RefObject; name: string; label?: string | JSX.Element; hasBar?: boolean; isFlex?: boolean; inputBg?: string; noMargin?: boolean; hasBorder?: boolean; placeholder?: string; borderWithBar?: boolean; inputBoxShadow?: string; fontSizeFamilyLabel?: string; fontSizeFamilyInput?: string; } interface IInputProps { configs: Props; children: React.ReactNode; } type InputProps = JSX.IntrinsicElements['input'] & IInputProps; export declare function InputCep({ configs, children, ...rest }: InputProps): React.JSX.Element; export {};