import { ColorType } from '../../common/types'; declare const CodeInputStyles: (Colors: ColorType) => { inputBox: { width: number; height: number; borderWidth: number; borderColor: string; marginRight: number; justifyContent: "center"; alignItems: "center"; }; animatedInputBox: { width: number; height: number; borderWidth: number; borderColor: string; marginRight: number; justifyContent: "center"; alignItems: "center"; }; animatedUnderLine: { height: number; width: number; marginRight: number; justifyContent: "center"; alignItems: "center"; borderBottomWidth: number; borderBottomColor: string; }; inputUnderlined: { height: number; width: number; marginRight: number; justifyContent: "center"; alignItems: "center"; borderBottomWidth: number; borderBottomColor: string; backgroundColor: string; }; errorUnderlined: { borderBottomWidth: number; borderBottomColor: string; }; codeTextStyle: { fontSize: number; color: string; }; }; export default CodeInputStyles;