/** * Phone Input component for @ollaid/native-sso * Custom select overlay: dropdown shows ISO code, selected display shows only flag + dialCode */ interface PhoneInputProps { value: string; onChange: (value: string) => void; ccphone?: string; onCcphoneChange?: (value: string) => void; disabled?: boolean; readOnly?: boolean; error?: string; placeholder?: string; lockCcphone?: boolean; } export declare function PhoneInput({ value, onChange, ccphone, onCcphoneChange, disabled, readOnly, error, placeholder, lockCcphone, }: PhoneInputProps): import("react/jsx-runtime").JSX.Element; export default PhoneInput;