import { KioskSignInType } from '@open-tender/types'; import { SignInProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const SignIn: ({ setSignInType, greeting, punctuation, navigate, children }: { setSignInType: (signInType: KioskSignInType) => void; greeting?: string; punctuation?: string; navigate: (route: string) => void; children: (props: SignInProps) => ReactNode; }) => ReactNode; export default SignIn;