import { ErrorMessageProps, KeypadProps, SignInPhoneProps, SignUpProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const SignInPhone: ({ close, callback, children, KeypadView, SignUpView, ErrorMessageView }: { close: () => void; callback?: () => void; children: (props: SignInPhoneProps) => ReactNode; KeypadView: (props: KeypadProps) => ReactNode; SignUpView: (props: SignUpProps) => ReactNode; ErrorMessageView: (props: ErrorMessageProps) => ReactNode; }) => React.ReactNode; export default SignInPhone;