import React from 'react'; import { TextFieldProps as MuiTextFieldProps } from '@mui/material'; import { ErkTextFieldProps } from '../ErkTextField/ErkTextField'; export interface ErkPhoneInputProps extends Omit { /** The value of the phoneinput */ value?: string; onChange?: (value: string) => void; inputRef?: any; readOnly?: boolean; } /** * Generic phoneinput with apps designs. Is class due to the use in the react-hook-forms library */ declare class ErkPhoneInput extends React.Component> { render(): JSX.Element; } export default ErkPhoneInput;