import { Colors } from '../../themes/types'; declare const getPasswordStrength: (inputValue: string, { weakText, mediumText, strongText, }: { weakText: string; mediumText: string; strongText: string; }) => { color: Colors; text: string; }; export default getPasswordStrength;