import * as React from 'react'; type InputType = 'mobile' | 'password' | 'email' | 'aadhaar'; interface InputProps { type: InputType; value: string | number; onChange: (event: React.ChangeEvent) => void; placeholder: string; } declare const LoginInput: React.FC; export default LoginInput; export declare const LoginCheckBox: ({ selectedValue, title, onChange, }: { selectedValue: boolean; title: string; onChange: (value: boolean) => void; }) => import("react/jsx-runtime").JSX.Element;