export declare const INPUT_OTP_VALIDATE_PRESET: {
    TEXT: (value: string) => boolean;
    NUMERIC: (value: string) => boolean;
    TEXT_NUMERIC: (value: string) => boolean;
};
export declare const INPUT_OTP_MASK_PRESET: {
    PASSWORD: string;
};
export declare const INPUT_OTP_FINISH_BEHAVIOR_PRESET: {
    FULL_FILLED_NON_LAST_INPUT: ({ isFullFilled }: import("./types").InputOTPFinishBehaviorContext) => boolean;
    FULL_FILLED_ON_LAST_INPUT: ({ isFullFilled, isChangeOnLastInput, isEnter, }: import("./types").InputOTPFinishBehaviorContext) => boolean;
};
