import React from "react"; import type { Props as InputProps } from "../Input"; import "./index.less"; export interface Props extends Omit { onSend: () => Promise; nextSendInterval?: number; autoSendOnMount?: boolean; sendButtonText?: string; } export declare const AuthenticationCodeInput: (props: Props) => React.JSX.Element;